CSC220 fibonacci2.php

From dftwiki3
Revision as of 18:32, 19 September 2010 by Thiebaut (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

--D. Thiebaut 23:26, 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 "<ul>";
for ( $count=2; $count<10; $count++ ) {
  $temp = $fibN + $fibN_1;
  $fibN_1 = $fibN;
  $fibN   = $temp;
  print "<li>fib[$count] = $fibN <br>";
}
print "</ul>";

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