CSC220 fibonacci1.php
--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;
for ( $count=2; $count<10; $count++ ) {
$temp = $fibN + $fibN_1;
$fibN_1 = $fibN;
$fibN = $temp;
print "fib[$count] = $fibN <br>\n";
}
?>
</div>
</body>
</html>