<?php
for ($count = 1; $count != 20;$count++)
{
print $count;
$count++;
}
?><?php
for ($x =1; $x < 10;++$x)
{
print "*t";
}
?><?php
for ($count = 1; $count < 20; $count++);
print $count;
?><?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?><?php
$i = 0;
while (++$i && --$i)
{
print $i;
}
?><?php
$i = 0;
while ((--$i > ++$i) - 1)
{
print $i;
}
?><?php
$x;
for ($x = -3; $x < -5; ++$x)
{
print ++$x;
}
?><?php
for ($i++; $i == 1; $i = 2)
print "In for loop ";
print "After loopn";
?><?php
$i = 0
do
{
$i++;
}
while ($i < 3);
print $i;
?><?php
$i = "";
while ($i = 10)
{
print "hi";
}
print "hello";
?><?php
$i = 2;
while (++$i)
{
while ($i --> 0)
print $i;
}
?><?php
$i = 2;
while (++$i)
{
while (--$i > 0)
print $i;
}
?><?php
$i = 0
while ($i++)
{
print $i;
}
print $i;
?><?php
$i = "";
while($i)
{
print "hi";
}
print "hello";
?><?php
$i = 5;
while (--$i > 0)
{
$i++; print $i; print "hello";
}
?><?php
$i = 0;
for ($i)
{
print $i;
}
?><?php
switch($b)
{
case 2:
print "hello";
break;
case 1:
print "hi";
break;
}
?><?php
switch($b)
{
case 2:
print "hello";
break;
case b:
print "hi";
break;
}
?><?php
$i = "";
while ($i)
{
print "hi";
}
while($i < 8)
$i++;
print "hello";
?><?php
$i = 0;
while($i = 10)
{
print "hi";
}
print "hello";
?>