Re: [PHP-WIN] Re: [PHP] Not able to add data to a MySQL database

2005-02-28 Thread Armando
Try removing the apostrophes around the field names that you are trying to insert data into: $query="insert into login (uname,access) values('try','super')"; Armando Richard Lynch wrote: Vaibhav Sibal wrote: Hi, I am not able to insert data into my mysql database using php even if i use a simple

[PHP-WIN] Re: [PHP] Not able to add data to a MySQL database

2005-02-28 Thread Richard Lynch
Vaibhav Sibal wrote: > Hi, > I am not able to insert data into my mysql database using php even if > i use a simple code as follows : > $link=mysql_connect("localhost","username","password"); > mysql_select_db("test_db"); > $query="INSERT INTO 'login' ('uname','access') VALUES ('try','super')"; >