Hi
as a newbie I am a bit lost as to why I get the above error in line beginning $sql= INSERT INTO addressbook of the following code
<?php
/ Connecting, selecting database /
$link = mysql_connect("localhost", "root", "password")
or die("Could not connect : " . mysql_error());
print "Connected successfully";
mysql_select_db("test") or die("Could not select database");
$sql= INSERT INTO addressbook SET Email = "webmaster@abc.net", First_Name = "Lester";
/* Closing connection */
mysql_close($link);
?>
Apologies if this is a basic question but you have to start somewhere.