Difference between revisions of "CSC220 fibonacci3.php"

From dftwiki3
Jump to: navigation, search
(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_…')
 
 
Line 51: Line 51:
  
 
<br />
 
<br />
[[Categoy:CSC220]][[Category:Php]]
+
[[Category:CSC220]][[Category:Php]]

Latest revision as of 19:33, 19 September 2010

--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>