But didn't you say that the same information was being put into the table more than once?
If you had the table definition, like the example below: ...
CREATE TABLE baseball (
bbDate date NOT NULL default '0000-00-00',
bbTime datetime NOT NULL default '0000-00-00 00:00:00',
id int(11) NOT NULL default '0',
team varchar(14) NOT NULL default '',
ipaddress varchar(20) NOT NULL default '',
PRIMARY KEY (id,date,team)
)
... it would cure the problem. Please note the Primary Key - you table structure didn't have one, or the id field was the only field in your Primary Key.
Also note that I've changed the field names slightly on date and time - these are both keywords within SQL, and may cause you problems later on.