Question:What will be the correct output of the following syntax ?
<?php $username="jasoN"; if(ereg"([^a-z])",$username)) echo "Username must be all lowercase!"; else echo "Username is all lowercase!"; ?>
A Username is all lowercase!
B Jason
C Username must be all lowercase!
D jason
+ AnswerC
+ Report