<?php
error_reporting (-1);
for ($n=1, $k=1; $n<10, $k<10; $n++, $k++, $f=$n*$k)	{
	echo "$n x $k = $f \n";
	}