I'm not sure how much back I should go as there is a lot of code involve in the entire process but it seems to be something cause by the call that I'm making and nothing else :S.
Here is a sample of the code in question:
$query = " INSERT INTO modules_menu (moduleid, divisionid, sectionid, categoryid, contentid) VALUES (10,20,5,1,2)";
mysql_query ($query,$dbressource); // $dbressource = Open link to database
Php Version is 5.04
MySQL version is : 4.0.25-standard
Has anyone heard of a problem like this (insert duplication in a mysql_query call) happening before ?
(Strangely enough I makes various calls to this function within my code and there is no problem the only occurence so far is in this code.