Also wie geht das 1x1 genau?

PHP-Code:
<?php
for($i=1;$i<=10;$i++)
{
   for(
$j=1;$j<=10;$j++)
      echo 
$i.'x'.$j.'='.($i*$j);
}
?>