I have recently installed php 4.2.1 and need a pointer or two wrt configuration.
1) I cannot get php tags to work inside html pages - i.e. if mypage.html has any php code, the code just appears in the browser as plain text. So, I have to have mypage.php and all is (nearly) ok except ...
2) If I use the short form for the php tag, I get what I want - a page displayed in the browser.
So <?=$var_val?> is fine.
If I use the long form, the browser just hangs and the page is never displayed.
So, <?php =$var_val ?> never makes it to the browser and the browser stays busy.
It has the feel of recursion about it.
My html knowledge is virtually zero - sorry.