Hello
I am using this book PHP for dummies and went through the automatic installation and Changed the ci_force_redirect = 0 in /windows. It required me to test it using a test page below, Problem is I saved it under Ineptub/wwwroot since I am using IIS 5.1, opened it in the browser using localhost/test.php. I am supposed to see an html line and a php line and a table. html line and php line shows up, but there's no table. Any sugestions?
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<p>This is an HTML line
<?php
echo “<p>This is a PHP line</p>”;
phpinfo();
?>
</body>
</html>