StevenG89

Untitled

Jan 6th, 2014
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2.  
  3. include('header.php');
  4.  
  5. echo "<table width=75% cellspacing=1 class='table'>
  6.         <tr style='background:gray'>
  7.             <th>Posters Name</th>
  8.             <th>Posters Message</th>
  9.             <th>Posters Userid</th>
  10.         </tr>";
  11. $res = mysql_query("SELECT * FROM `chat_boxes`");
  12. while ($row = mysql_fetch_array($res))
  13. {
  14.     print "\n<tr>
  15.                  <td>{$row['postername']}</td>
  16.                  <td>{$row['postermessage']}</td>
  17.                  <td>{$row['posterid']}</td>
  18.             </tr>";  
  19. }
  20. print "</table>";
  21.  
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment