Guest User

Untitled

a guest
Jun 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <title>NewTable</title>
  5. </head>
  6. <body>
  7.  
  8. <?php
  9. require ("config.php");
  10. $sql_select="select * from NewTable";
  11.  
  12. ?>
  13.  
  14. <table>
  15. <?php foreach($connect->query($sql_select) as $row){?>
  16. <tr>
  17.  
  18. <td><?=$row['name']?></td>
  19. <td><?=$row['autor']?></td>
  20. <td><?=$row['year']?></td>
  21. <td><?=$row['genre']?></td>
  22. <td><?=$row['ISBN']?></td>
  23. </tr>
  24. <?php } ?>
  25. </table>
  26.  
  27. </body>
  28. </html>
Add Comment
Please, Sign In to add comment