Quote Originally Posted by DEViANCE View Post
when adding PHP in a HTML file you need to break the HTML like this:

Code: 
<a href="http://besthostingforums.com">blahhhhhhhhh</a>
<?php
$some_php_here = true;
?>
<a href="http://besthostingforums.com">blahhhhhhhhh</a>
Also the extension MUST be .php or it won't work, there is a way around that but i can't be bothered to explain it will only confuse you further.
the code i told him to put in his htaccess will let you put php in html. such as:

a file called: hi.html

<html>
hi<br />
<php echo hi; ?>
</html>