Using this php script in a Joomla environment I always get two absolutely identical records appended to the sql table. I have checked the query string and that looks ok - so I'm at a loss!
$writetwo = "INSERT INTO #__art_visits VALUES('','$ua','$prod','$man','$dev','$os',NOW())";
$db->setQuery($writetwo);
$db->query();
Earlier in the script there are queries on the table, but I'm not sure that this has anything to do with the problem.
VALUES('',is it an auto incremented column? what do you mean by identical records appended? all columns have identical data? – JW 웃 Oct 5 '12 at 11:47