PHP (PHP: Hypertext Preprocessor) è un linguaggio di scripting server-side usato per lo sviluppo web.
Caratteristiche principali
- Open source e gratuito
- Facile da imparare
- Ampio supporto database
- Grande community e documentazione
Primo script PHP
<?php
echo "Ciao Mondo!";
?>Tag PHP
<?php
// Codice PHP qui
?>
// Short echo tag
<?= $variabile ?>Commenti
// Commento singola linea
# Anche questo è un commento
/* Commento
multilinea */