<?php
for ($a=1;$a<=9;$a++){
	for ($b=1;$b<=9;$b++){
		$multipl=$a*$b;
		echo "$a x $b = $multipl, ";
			if ($b==9){
			echo"\n";
	}
}
}
?>