Guest User

Untitled

a guest
Jan 5th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. #wrapper {
  5. width: 900px;
  6. font-family: Helvetica;
  7. margin: 0 auto;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <section id="wrapper">
  13. <?php
  14. $username = "root";
  15. $password = "root";
  16. $hostname = "localhost";
  17.  
  18. //connection to the database
  19. try {
  20. $dbh = new PDO('mysql:host=localhost;dbname=foreningsstart', $user, $pass);
  21. foreach($dbh->query('SELECT * from PROJECTS') as $row) {
  22. print_r($row);
  23. }
  24. $dbh = null;
  25. catch (PDOException $e) {
  26. print "Error!: " . $e->getMessage() . "<br/>";
  27. die();
  28. }
  29. ?>
  30. <article class="post">
  31. </article>
  32. </section>
  33. </body>
  34. </html>
Add Comment
Please, Sign In to add comment