esposimi

interest_array.php

Mar 23rd, 2011
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.91 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Interest Array</title>
  6. </head>
  7.  
  8. <body>
  9. <?php
  10.    
  11.     $InterestRate1 = .0725;
  12.     $InterestRate2 = .0750;
  13.     $InterestRate3 = .0775;
  14.     $InterestRate4 = .0800;
  15.     $InterestRate5 = .0825;
  16.     $InterestRate6 = .0850;
  17.     $InterestRate7 = .0875;
  18.    
  19.     $RatesArray = array($InterestRate1, $InterestRate2, $InterestRate3, $InterestRate4, $InterestRate5, $InterestRate6, $InterestRate7);
  20.    
  21.  
  22.    
  23.     echo "<p>The following interest rates are offered:</p>";
  24.     echo "$RatesArray[0]<br />";
  25.     echo "$RatesArray[1]<br />";
  26.     echo "$RatesArray[2]<br />";
  27.     echo "$RatesArray[3]<br />";
  28.     echo "$RatesArray[4]<br />";
  29.     echo "$RatesArray[5]<br />";
  30.     echo "$RatesArray[6]<br />";
  31. ?>
  32.  
  33.  
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment