Contents / Previous / Next


PHP Intro

PHP (=Hypertext Preprocessor) is a cross-platform, server-side, HTML embedded scripting language devised by Rasmus Lerdorf in 1994 (he called this code "Personal Home Page").

Server-Side:
PHP scripts are executed on the web server, not on the client (e.g. netscape).
After execution it merely sends an HTML stream to the client,
with no way of determining what the underlying code may be.

The syntax is borrowed from C, Java and Perl with some unique features.

Why Using PHP?