Pyramid in PHP Part V

PHP Pyramid Part 5
<?php $limit = 5; for($i=0;$i<=$limit;$i++) { for($x=0;$x<$i;$x++) { if($x==0) { echo "1"; continue; } echo "0"; } echo "<br/>"; } ?>
Output: 1 10 100 1000 10000
<?php $limit = 5; for($i=0;$i<=$limit;$i++) { for($x=0;$x<$i;$x++) { if($x==0) { echo "1"; continue; } echo "0"; } echo "<br/>"; } ?>
Output: 1 10 100 1000 10000