Difference between revisions of "CSC220 fibonacci1.php"
(Created page with '--~~~~ ---- <code><pre> <html> <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"> <PRAGMA NO-CACHE> <head> <title>Php variables</title> <body> <div> <?php $fibN = 1; $fibN_1…') |
|||
Line 47: | Line 47: | ||
<br /> | <br /> | ||
− | [[ | + | [[Category:CSC220]][[Category:Php]] |
Latest revision as of 18:31, 19 September 2010
--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>