Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <table id="usertracking" >
  2. <thead>
  3. <tr>
  4. <?php
  5. echo'<td><h3>'.$h1.'<h3></td>';
  6. echo'<td><h3>'.$h2.'<h3></td>';
  7. echo'<td><h3>'.$h3.'<h3></td>';
  8. echo'<td><h3>'.$h4.'<h3></td>';
  9. ?>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <?php
  14. for($i=$start;$i<$end;$i++)
  15. {
  16. echo'<tr>';
  17. echo'<td>'.$ARRAY[$i]['MpwName'].'</td>';
  18. echo'<td>'.$ARRAY[$i]['PatientName'].'</td>';
  19. echo'<td>'.$ARRAY[$i]['PatientAddress'].'</td>';
  20. echo'<td>'.$ARRAY[$i]['New'].'</td>';
  21. echo'<tr>';
  22. }
  23. ?>
  24. </tbody>
  25. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement