So What is PHP and what does it stand for ?
PHP is an HTML-embedded
scripting language. Much of its syntax is borrowed from C, Java and
Perl with a couple of unique PHP-specific features thrown in. The
goal of the language is to allow web developers to write dynamically
generated pages quickly
PHP stands for PHP:
Hypertext Preprocessor. This confuses many people because the first
word of the acronym is the acronym. This type of acronym is called
a recursive acronym
Top of Page
What's new in Version 4
There are a couple
of articles written on this by the authors of PHP.Click here to read about them
Here's a list of some of the more important new that us at Adam Moffett Design
think are relevant.
-
- Generic web server
interface that also supports multi-threaded web servers
- Improved syntax
highlighter
- Native HTTP session
support
- Output buffering
support
- Reference counting
How to use PHP and some basic examples
To have your pages
processed by the PHP script engine your pages must end in either .php
or .php3 extensions. We have set up our servers in such a way that
all files with the above extensions are not handled by the Webserver
and are sent to PHP.
Hello World
Checking Your
Browser Type
PHPInfo
Top of Page
Hello World