This is my code:
$sql = "INSERT INTO `name` ( `name` ) "
. "VALUES ("$_POST["membername"]");"
. "";
mysql_query($sql);
I have a form where the person fills out their username and then it sends it to the DB. But for some reason it says the username is "$_POST["membername"]" and not what they filled out. Help?