~~TOC~~
Lab46 Tutorials
PHP
Hyper Text Preprocessor
PHP (Personal Home Page) is a scripting language used to produce dynamic web pages. It is put into html pages to give them more functionality. There is no compiling necessary, the web server interprets the code at run time.
<html> <head> <title>My page with PHP</title> </head> <body> <?php echo "This is a hello world page!" ?> </body> </html>