Test HTML-Kit with PHP
To test the Server Mapping within HTML-Kit and the Abyss Web Server
- Use File Menu | Open File to open <Server Root>\htdocs\test.php
- Use the preview tab to preview in the workspace, and
- Use F8 function key to preview in the default browser window
- Use the Alt+1 key to preview in Firefox
In all three cases, the Web browser should display:
"This is a successful test of PHP"
Note: If you do not have the test.php file available, use HTML-Kit to 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>