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.
- Tip: When you save with Notepad, surround the filename "test.php" with "double-quotes" so that Notepad won't add an extra .txt extension.
<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:
- Use Internet Explorer to browse to http://localhost/test.php (or http://localhost:8000/test.php if you changed the default port number)
The browser window should display:
"This is a successful test of PHP"
Next: Installing HTML-Kit