Share Pastebin
Guest
Public paste!

charlvn

By: a guest | Oct 27th, 2008 | Syntax: HTML | Size: 0.51 KB | Hits: 6 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. <!DOCTYPE HTML>
  2. <html lang="en">
  3.  <head>
  4.   <title>Google Contacts</title>
  5.   <link rel="stylesheet" type="text/css" href="style.css">
  6.  </head>
  7.  <body>
  8.   <table>
  9.    <caption>Contacts</caption>
  10.    <thead>
  11.     <tr>
  12.      <th>Name</th>
  13.      <th>Email</th>
  14.     </tr>
  15.    </thead>
  16.    <tbody>
  17. <?php foreach ($contacts as $contact): ?>
  18.     <tr>
  19.      <td><?php echo $contact['name']; ?></td>
  20.      <td><?php echo $contact['email']; ?></td>
  21.     </tr>
  22. <?php endforeach; ?>
  23.    </tbody>
  24.   </table>
  25.  </body>
  26. </html>