I am lost. I have written a very simple Insert text.
$sql2 = "INSERT INTO AA (b)
VALUES
('me')";
$result2 = mysql_query($sql2) or die ("insert has not worked.");
The first time I ran it is worked and the database had the field inserted. I ran it again only to get the 'insert has not worked' ?
I can not understand how this can be surly the insert instruction will just keep adding ?
The Data base has 2 fields
a is Type int(6) and Primary
b is varchar(40)
both null No