$fname = "Kevin";
$fname_match = preg_match('/^[A-Za-z]{2,20}$/', $fname);
if($fname_match==true)
{
echo "All matches... true?";
}
else
{
echo "All matches.. noo?";
}
I should be getting the first one right?
But i get the else message....
Why?
'Kevin' should match?