No unfortunately I don't. But I figure out somehow following part is not working.. what ever email address I enter it give me the error message even it is in my table.
- PHP: Select all
$email=mysql_real_escape_string($email);
$status = "OK";
$msg="";
//error_reporting(E_ERROR | E_PARSE | E_CORE_ERROR);
if (!stristr($email,"@") OR !stristr($email,".")) {
$msg="Your email address is not correct<BR>";
$status= "NOTOK";}