Mozilla and Php

pcman83

Senior member
Oct 20, 2003
397
0
0
If you have mozilla go to this site.

My Clan Site

Enter it, you can watch the videos if you want though.

Click on forum and it will be blank. Internet explorer works fine. Anyone have a fix for mozilla?
 

cquark

Golden Member
Apr 4, 2004
1,741
0
0
It's not PHP. The PHP code is run by the server, so the web browser never sees it.

The problem has to be in the HTML output by your PHP. One common reason why a page will be blank is if the page has a markup type label at top (like HTML 4.0) and the page is not actually that markup type. Use an HTML validator like the one at http://validator.w3.org/ to find the errors in your HTML.
 

oog

Golden Member
Feb 14, 2002
1,721
0
0
i see a number of things wrong with the html. there are <a> tags that arent' closed. i see two <html> tags (i haven't searched for more). i see two <head> tags. start by cleaning these things up, and follow cquark's suggestion of cleaning everything suggested by the validator that cquark suggested.

edit: there are three <head> tags and three <body> tags. those are probably the most important thing to fix. you probably included a whole page within another one through php somewhere.