Código PHP:
$sqql = "select * from customers where customers_email_address = '[email protected]'";
Código PHP:
$mail = '[email protected]';
$sqql = "select * from customers where customers_email_address = '$mail'";
Código PHP:
$sqql = "select * from customers where customers_email_address = '" . $mail . "'";
Código PHP:
$sqql = 'select * from customers where customers_email_address = "' . $mail . '"';
Y no decirme que haga un select * from customers y despues haga un bluce donde ponga $db['email'] == $mail por que tampoco funciona... teniendo las dos variables lo mismo if ( $db['email'] == $mail ) no lo da por bueno....
alguien puede saber que narices me pasa?