Che cos'� il PHP?
PHP (acronimo ricorsivo per "PHP: Hypertext
Preprocessor") � un linguaggio di scripting general-purpose
Open Source molto utilizzato, � specialmente indicato per lo sviluppo
Web e pu� essere integrato nell'HTML.
Risposta banale, ma che cosa significa? Un esempio:
Esempio 1-1. Un esempio introduttivo <html>
<head>
<title>Esempio</title>
</head>
<body>
<?php
echo "Ciao, sono uno script PHP!";
?>
</body>
</html> |
|
Notate come questo esempio � differente da uno script scritto
in altri linguaggi tipo Perl o C -- invece di scrivere un programma
con parecchi comandi per produrre HTML, si scrive in HTML con qualche
comando immerso per ottenere dei risultati (in questo semplice esempio,
la visualizzazione di una frase). Il codice PHP � delimitato da speciali
start ed end tag
che ne indicano l'inizio e la fine e che consentono di passare dal modo HTML al modo PHP.
What distinguishes PHP from something like client-side JavaScript
is that the code is executed on the server. If you were to have a
script similar to the above on your server, the client would receive
the results of running that script, with no way of determining what
the underlying code may be. You can even configure your web server
to process all your HTML files with PHP, and then there's really no
way that users can tell what you have up your sleeve.
The best things in using PHP are that it is extremely simple
for a newcomer, but offers many advanced features for
a professional programmer. Don't be afraid reading the long
list of PHP's features. You can jump in, in a short time, and
start writing simple scripts in a few hours.
Although PHP's development is focused on server-side scripting,
you can do much more with it. Read on, and see more in the
What can PHP do? section.