Hello everyone. I just got my PHP5 / Apache2 / MySQL / phpMyAdmin all set up, and the phpInfo() is working great on http://localhost/, and even in subdirectories that I create in my Apache2/htdocs folder. However, I can't get any OTHER php files to work, like say this header include:
<?php include("header.php"); ?>
that is on an .html page.
Or this hello.php test page either:
<html>
<head>
<title>Hello in PHP</title>
</head>
<body>
<h1>Hello in PHP</h1>
<?
print "Hello, world!";
phpInfo();
?>
</body>
</html>
I've googled, and read several FAQ's but can't find anything in regards to the phpinfo() working and other php files not working... Anyone have any ideas? Thanks in advance.
**New update... I just uploaded hello.php to my mom's web space which is configured to run php, and phpinfo.php as well as hello.php worked, however the php include of a header in an html file didn't! Now I'm really stumped... =(