<?php
  function show($x, $y) {
    print "<tr><td>" . $x . "<td>" . ($x+$y) . "\n";
  }

  print "<table border>\n";
  print "<tr><td>X<td>X+10\n";

  show(123456789, 10);
  show(PHP_INT_MAX, 10);
  show(-PHP_INT_MAX-1, 10);

  print "</table>\n";  
?>