61. What will be the output of the following PHP code ?
<?php
for ($x = 0; $x <= 10; print ++$x)
{
print ++$x;
}
?>
<?php
for ($x = 0; $x <= 10; print ++$x)
{
print ++$x;
}
?>