Table of Contents

~~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.

First Web Page with PHP

<html>
    <head>
        <title>My page with PHP</title>
    </head>
    <body>
    <?php
        echo "This is a hello world page!"
    ?>
    </body>
</html>

Basic Commands

Variables and Comments
Common Functions
Regular Expressions