__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
After I posted my problem I changed to your suggested code and it didn't work.
That depends on what you mean by "didn't work".
IF you're still seeing <? echo $hmenu ?> in your html then you've not changed the correct part of your php code.
If you're referring to something else that "didn't work" then you need to tell us more about it
PHP short tags <? are not enabled on every server (for good reason - .xml files also use <? in them) so you must be prepared to use <?php in all of your php code instead.
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value.
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value.
The links at the top don't work because you have gone overboard on the use of absolute, relative positioning (and using tables for layout!) and there is something sitting above the links preventing them from being clickable.
Ever wanted to see your page from the computer's perspective? But the attached image won't help you fix your page.
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
It's in FireFox - right click, Inspect Element (Q) and click the 3D View button. I'm not sure if it requires FireBug to be installed.
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value.