Good Morning,
I'm restarting programming after 15 years or so. I've downloaded Apache 2.2.4 and php 5.2.1 and successfully (sort of) installed them. I've reinstalled numerous times using different install tips with no success. I'm sure it's a minor in the httpd.conf or php.ini, but I'm having trouble finding it.
I'm having trouble with php embedded in html - the screen is just blank.
I created a file phpinfo().php
<?php phpinfo(); ?>
and it works fine from localhost/phpinfo.php and as a link, but doesn't display when embedded like so in index.htm.
<html>
<body>
<h1>
It works!
</h1>
<?php phpinfo(); ?>
</body>
</html>
I'm sure it's right in front of me, but I'm missing it
Any help is appreciated,
Todd