Simple mysql query not working in php -


suddenly sql query not woking in add table.

it works in other table though. there wrong in code?

$sql="select index,name add limit 0,10"; $result=mysql_query($sql);     while($row=mysql_fetch_assoc($result))     {  echo $row['name']; } 

the index name filled random data.

add reserved word in mysql. have quote it.


Comments