I have read people who have had this problem with Mozilla and it had to do with Header information. I have explored that without success. I've heard of similar behavior if you have an img tag where src=="", or if you have an error in a css file, then firefox will load the page twice. I don't believe that is my problem as it happens with IE.
I also tested it with a VERY simple script (which I am including). I'm not sure if it is a browser thing, a coding thing, a header thing, a syntax thing. I am at a loss. Please help.
This is my whole script:
Code: Select all
<?php
$mydb = mysql_connect("MY_SERVER", "MY_UN", "MY_PW") or die(mysql_error());
mysql_select_db("MY_DB") or die(mysql_error());
$query = "INSERT INTO players (ID, first, last, pos, birth, rookie) VALUES ('Test', 'Joe', 'Practice', 'QB', 1990, 1990)";
mysql_query($query) or die(mysql_error());
echo("done");
?>