Guest User

Untitled

a guest
Jul 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. function DisplayContent(){
  2.  
  3. echo '<table width="550" style="margin:0 auto;">';
  4. echo '<thead><h1 class="pagehead">Upcoming Events</h1><br /></thead>';
  5. echo '<tbody>';
  6. echo '<tr>';
  7. echo '<td width="166" style="text-align:center;">Date</td>';
  8. echo '<td width="166" style="text-align:center;">Event</td>';
  9. echo '<td width="166" style="text-align:center;">Location</td>';
  10. echo '</tr>';
  11.  
  12. $row = 1;
  13. if (($handle = fopen("events.csv", "r")) !== FALSE) {
  14.  
  15. while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
  16. $num = count($data);
  17. $row++;
  18. echo '<tr>';
  19. for ($c=0; $c < $num; $c++) {
  20. echo "<td>" . $data[$c] . "</td>n";
  21. }
  22. echo '</tr>';
  23. }
  24. fclose($handle);
  25. }
  26.  
  27. echo '</tbody>';
  28. echo '</table>';
  29. }
Add Comment
Please, Sign In to add comment