CSC220 fibonacci3.php

From dftwiki3
Jump to: navigation, search

--D. Thiebaut 23:27, 19 September 2010 (UTC)



<html>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<PRAGMA NO-CACHE>
<head>
<title>Php variables</title>
<body>
<div>

<?php

$fibN = 1;
$fibN_1 = 1;

print "<table border=\"1\">";
print "<tr><td> i </td><td> fib[i] </td></tr>";
for ( $count=2; $count<10; $count++ ) {
  $temp = $fibN + $fibN_1;
  $fibN_1 = $fibN;
  $fibN   = $temp;
  print "<tr><td>$count</td><td> $fibN </td></tr>";
}
print "</table>";

?>
</div>
</body>
</html>