SQL not executing nor echoing
Posted: Tue Nov 02, 2010 10:48 pm
Hi,
Can anyone see anything glaringly obvious with this PHP code? It's not even echoing my query to the browser!
I can see the $email_address fine when it's being echoed but nothing below that seems to work.
Does anyone have any ideas?
Can anyone see anything glaringly obvious with this PHP code? It's not even echoing my query to the browser!
Code: Select all
$email_address = $_POST['email_address'];
echo $email_address;
$que = mysql_query("DELETE FROM `member2` WHERE `email` = $email_address");
echo $que;
Does anyone have any ideas?