I've written a php page which contains this line: echo "<a href=BookList.php>Book List</a><br>";
That line creates a working hyperlink to BookList.php, another php page. BookList.php contains php as well, but that php doesn't seem to be working. The following code:
<html>
<head>
<title>
</head>
<body>
<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
echo "Great!";
?>
</body>
</html>
Which should produce the word Great! is producing a blank screen. Any ideas why?
That line creates a working hyperlink to BookList.php, another php page. BookList.php contains php as well, but that php doesn't seem to be working. The following code:
<html>
<head>
<title>
</head>
<body>
<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
echo "Great!";
?>
</body>
</html>
Which should produce the word Great! is producing a blank screen. Any ideas why?