Topic: mysql problem...
The following bit of PHP gives me the MySQL error: #1054 - Unknown column 'jer' in 'where clause'
$result = mysql_query("SELECT `id` FROM `members` WHERE `username` = ".$post['username']." AND `password` = ".$post['password']."", $open) or die(mysql_error());
The above line is in a function so $post is correct and the value of $post['username'] is currently 'jer'
Any help?