Database Reference
In-Depth Information
Figure 15.5
Apache server default webpage.
A Quick PHP Script
PHP is a scripting language that you can embed into HTML documents. The HTML docu-
ment is saved with the extension .php to indicate to the webserver that it needs to pass the
file to the PHP server. Save the following to a text file:
<HTML>
<TITLE>Test PHP script</TITLE>
<BODY>
<?PHP
print “It works.” ;
?>
</BODY>
</HTML>
Search WWH ::




Custom Search