?> Invalid email address or domain not found: $email.

Click here to try again.

"; return; } $query="select count(*) as count from admin.sp_users where lower(email)= lower('$email')"; $number = get1value($query); //echo "result- $result

"; if ($number==0) { $action = 'add'; $field1 = 'fname'; require($libdir.'head2.php'); include("foundInfo.php"); } else { $query="select password from admin.sp_users where lower(email)= lower('$email')"; $pwdInDb = get1value($query); // echo "pwd [$pwd] pwddb: [$pwdInDb]
"; if ( $pwd <> $pwdInDb){ $field1 = ''; require($libdir.'head2.php'); echo "

Incorrect password. Press the Back button on your browser or click here to try again.

"; } else { $action = 'edit'; $field1 = 'fname'; require($libdir.'head2.php'); $query="select * from admin.sp_users where lower(email)= lower('$email')"; $result = mysql_query($query); include("foundInfo.php"); } } ?>