Testing PHP Support

Using Notepad, type (or copy and paste) this simple PHP file and save it as "test.php" inside the htdocs folder in your <Server Root> folder.

<html>
<head>
 <title>PHP Test</title>
</head>
<body>
<p>
 <?php 
  echo ('This is a successful test of PHP'); 
 ?>
</p>
</body>
</html>

With the Abyss Web Server running:

The browser window should display:

"This is a successful test of PHP"

Next: Adding Simple Test