I haven't seen the problem myself exactly, no. If I were to view the same page on my local machine with no MySQL and no PHP installed, I do, but live on the server, no. "Jibberish" was her word... what shows is the straight HTML (not PHP generated) as it should (header, menus, text) and then the PHP code that would otherwise display the HTML laying out the table. Something like this:
"; exit; } $query = "select * from tblEvents"; $result = mysql_db_query ("gsdatabase", $query); if ($result){ echo "
"; switch(intval($_REQUEST['order'])) { case 1: default: $order = 'EDate'; break; case 2: $order = 'EName'; break; case 3: $order = 'ELevel'; break; case 4: $order = 'EType'; break; } if (intval
and so forth (these aren't consecutive snippets, I just cut and pasted at random) ... I'm beginning to think, after further thought and testing that it's not a PHP error at all... Here's the URL
www.gsspanishtrails.org
Clicking Events Calendar from the left menu creates a corrupted page for this person ... the menu is the result of two .js scripts working together...
Clicking Events Calendar from the bottom of the page - the footer - doesn't produce the results... that is single .js file with simple document.write statments in it...
So... I'm thinking that it's a javascript and IE permissions set issue not PHP...
However, other PHP pages launched from the same menu, using
the same database, work fine for her... so, I'm not certain the javascript is the problem either. And, apparantly if she links to the page directly by typing in the whole path in the URL, it works fine.
Steph