$con = mysql_connect("localhost","--------","------")
or die ("Could not connect to mysql because ".mysql_error());
mysql_select_db("-----------");
$insert = mysql_query("INSERT INTO count (user, day, hour) VALUES ('".$user."', ".$day.", ".$hour.") ON DUPLICATE KEY UPDATE day=".$day.", hour=".$hour."")
or die("Error Code:".mysql_error());
mysql_close($con);
It just creates a new row every time. I am trying to update the day and hour values if the user matches a row and if it doesnt then make a row with that data. ALSO I am pretty sure this is outdated and messy way to query SQL through php.
usercolumn? – Florin Ghita Apr 21 '12 at 8:24