<?php	// Таблица умножения
error_reporting(-1);

for ($i = 1; $i < 10; $i++) {
	$x = $i * $i;
	echo "${i}x${i} = ${x}\n";
}

?>