This blows my mind, why would I get a error on selecting from my table like this:
$columns = mysql_query("Select * from column",$con); //this one gives error
$levels = mysql_query("Select * from level",$con);//this one is working fine
Both of them are setup the same in the DB as "int(11)", but only the one gives error
When puttin in the ``, it works fine.
$columns = mysql_query("Select * from `column`",$con);
Why would this happen on some tables, and not on others?