Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. $counter = 1;
  3. $prices = array(9.99,4.99,6.99);
  4. $shirtprice = $prices[0];
  5.  
  6.  
  7. echo "<table width='600' cellpadding='5' cellspacing='5' border='1'>";
  8.  
  9. echo "<tr><td>Quantity</td><td>Price</td></tr>";
  10. while ( $counter<= 10) {
  11.  
  12. echo "<tr><td>$counter</td><td>".number_format($shirtprice*$counter,2)."</td></tr>";
  13.  
  14. $counter++;
  15.  
  16. }
  17.  
  18. echo "</table>";
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement