Public paste
Undefined
By: --- | Date: Apr 12 2007 07:32 | Format: PHP | Expires: never | Size: 237 B | Hits: 1244

  1. <html>
  2. <head>
  3. <title>Lijst in PHP</title>
  4. </head>
  5.  
  6. <body>
  7.  
  8. <dl>
  9. <?php for ($i= 1; $i<11; $i++){ ?>
  10. <dt>Term <?php echo $i ?></dt>
  11. <dd>Hier staat de definitie van term <?php echo $i ?></dd>
  12. </dl>
  13. <?php } ?>
  14.  
  15. </body>
  16. </html>