Guys Im so frustrated with this and almost ready to give up on the whole thing.
I installed wamp server on win7 and all services running..I can browse to a php file on my web server and it works as expected but if I try to include it into my html it never runs and chromes dumb ass debugger never says anything is wrong here is an example of my html and php file which reside in the same directory..
file grrr.php
<?php echo "I HATE PHP" ;?>
file test.html
<!DOCTYPE HTML>
<HTML>
<Body>
<?php include 'grrr.php';?>
</Body>
</HTML>
Seems easy enough but nothing but a blank screen. although if i browse to grrr.php instead of test.html I get the expected output. What am I doing wrong...I have no hair left.