Advertisement
Guest User

Untitled

a guest
Nov 24th, 2015
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="sr">
  4. <meta charset="UTF-8">
  5. <title>Manipulacija nizovima</title>
  6. <style>
  7. table {
  8. border: 1px solid black;
  9. }
  10. table th, td {
  11. padding-right: 30px;
  12. }
  13.  
  14. </style>
  15. </head>
  16. <body>
  17. <h1>Rešenje zadatka<h1>
  18. <table>
  19. <tr>
  20. <th>id</th>
  21. <th>fname</th>
  22. <th>lname</th>
  23. <th>email</th>
  24. </tr>
  25. <?php
  26.  
  27. $users = array(
  28. array("1", "Peter", "Andersen", "peter@gmail.com"),
  29. array("2", "John", "Miller", "john@gmail.com"),
  30. array("3", "Thomas", "Swift", "thomas@gmail.com")
  31. );
  32.  
  33. printTable($users);
  34.  
  35. function printTable($table) {
  36. $tableLen = count($table);
  37. for ($i = 0; $i < $tableLen; $i++) {
  38. echo "<tr>\n";
  39. for ($x = 0; $x < 4; $x++) {
  40. echo "<td>" . $table[$i][$x] . "</td>\n";
  41. };
  42. echo "</tr>\n";
  43. };
  44. };
  45.  
  46. ?>
  47. </table>
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement