Jump to content

php and css in Interet Explorer


fixxxer

Recommended Posts

Hi,
on my site ive got a top menu bar built using css. it works fine in firefox but in IE i get a problem when i insert this line at the top of the page

<?php session_start(): ?>

when this line is there the drop down sections of the menu fail to work. Can anyone explain why this is so ive tried several things. Some one recommended i put it like this

<?php
session_start();
?>

but this still didn't work, is this a problem that anybody else has encountered.

if any one could help id be grateful

Link to comment
https://forums.phpfreaks.com/topic/13635-php-and-css-in-interet-explorer/
Share on other sites

In your menu bar do you have any PHP variables like $name because if you also have a session called $_SESSION['name'] then $name will use that value.. I had this problem with a login script and confused me and alot of other people to hell and back! any values u use in PHP coding in your menu add a 1 at the end and see if that fixes the issue?

so $name would become $name1

Regards
Liam

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.