Hmmm.
I've got a MySQL Db that accepts data from a web form. Trouble is it inserts it twice !
The code is nothing fancy
if (isset($udate) )
{
$sql = "insert into lotteryt (N1,N2,N3,N4,N5,N6,BB,uDate)";
$sql .= "values ('$N1','$N2','$N3','$N4','$N5','$N6','$BB','$udate')";
$conn->Execute($sql);
So I don't know what is going on. Anyone else seen this b4?