MySQL making a double entry on INSERT?
Posted: Thu Nov 27, 2003 10:11 am
I seem to have a strange problem where I am getting a double entry when running the following MySQL INSERT query...
Is this a normal problem with MySQL? and if so how do I cover for it?
Thanks
Code: Select all
<?php
$query = "INSERT INTO this_table (client, page, title, text, right_left, num)
VALUES ('$client', '$page', '$title', '$text', '$right_left', '$num')";
?>Thanks