Math Php

for ($x = 1; $x < 25; $x++) {
  print("$x to the $x power is " . bcpow($x, $x) . "
");
}
?>