How Can I print a to z NOT a to y ?
It is a part of a code where
Code: Select all
$alpha= 'a';
for($alpha='a';$alpha!='z';$alpha++)
{
echo $alpha.' ';
}
$alpha!='z' have the problem..$alpha<='z' creates problem.
please help me about the for loop condition.