1)
yes..
you will need some regex though, and Im not too great with them..
could be something as simple as
<?
$string = "abc123";
if(ereg('[0-9]', $string)
{
//does not contain numbers?
}
else
{
//does contain numbers?
}
?>
2)
do a search on these boards for
email verification