Sanjib Sinha Posted January 11, 2009 Share Posted January 11, 2009 Here is my code: <?php $c = mysql_connect('localhost','root',""); $c = mysql_select_db('user', $c); for($i=1; $i<=5; $i++){ $sql = "INSERT INTO 'users' ('username') VALUES('$i')"; $res = mysql_query($sql) or die(mysql_error()); echo "Row $i has been added <br>\n" ; } ?> Here is the output: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''users' ('username') VALUES('1')' at line 1 Where is the problem? Link to comment https://forums.phpfreaks.com/topic/140370-solved-why-sql-error/ Share on other sites More sharing options...
ratcateme Posted January 11, 2009 Share Posted January 11, 2009 ' are used in mysql to contain strings ` are used to contain field names (or at least that is my belief) try this $sql = "INSERT INTO `users` (`username`) VALUES('$i')"; Scott. Link to comment https://forums.phpfreaks.com/topic/140370-solved-why-sql-error/#findComment-734552 Share on other sites More sharing options...
redarrow Posted January 11, 2009 Share Posted January 11, 2009 $sql = "INSERT INTO 'users' ('username') VALUES('$i')"; you put single slash around users take them away or use `` button under esc. Link to comment https://forums.phpfreaks.com/topic/140370-solved-why-sql-error/#findComment-734558 Share on other sites More sharing options...
Sanjib Sinha Posted January 11, 2009 Author Share Posted January 11, 2009 ' are used in mysql to contain strings ` are used to contain field names (or at least that is my belief) try this $sql = "INSERT INTO `users` (`username`) VALUES('$i')"; Scott. Hi Scott Your belief is true. I removed ' and replaced with ` and it solved. Thank you. I have learnt a new thing. Link to comment https://forums.phpfreaks.com/topic/140370-solved-why-sql-error/#findComment-734568 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.