Jump to content

[SOLVED] why sql error


Sanjib Sinha

Recommended Posts

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

' 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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.