THe PHP Manual is a simple and brief demonstration of some basic PHP exercises. The tutorial was presented in several steps, and I have created a separate page for each section the tutorial to preserve the integrity of the original demonstration. Please click the preview images below to view the full PHP demonstration page.
This section was a very simple demonstration of how to display text using an echo statement. It also contains a phpinfo() function which displays useful information about your current system and setup, such as available predefined variables, loaded PHP modules, and configuration settings.

The second section illustrates the $_SERVER superglobal, which can be used to determine the browser the user is running and return the result. It then demonstrates a simple 'if' statement, which will only print if the user is using Internet Explorer. The second set of statements are a mix of HTML and PHP which will give output whether or not the user is using Internet Explorer.


The tutorial concludes with links to public repositories and libraries containing code that can be reused.