1.

What will be the output of the following PHP code?
$name = "mAnjeSh";
if (ereg("([^a-z])",$name))
echo "Name must be all lowercase!";
else
echo "Name is all lowercase!";
?>

A. Name is all lowercase!
B. No Output is returned
C. Name must be all lowercase!
D. Error
E. None of these
Answer» D. Error


Discussion

No Comment Found

Related MCQs