>my $sth = $dbh->prepare("SELECT email_address FROM users WHERE
>email_address='[EMAIL PROTECTED]'")

>The above line did not work, so the address was not found, guess who forgot
>to escape the @ !!

If you were using the recommended pragma
   use warnings;
at the beginning of the script (or running "perl -w"), you would have
found earlier that @myisp was being misinterpreted, with a warning
message like this:
   Possible unintended interpolation of @myisp in string at ...
   Name "main::myisp" used only once: possible typo at ...

Regards,
Adriano.

Reply via email to