Advertisement
_Error

Untitled

Jan 26th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  9. <title>MJK Testing</title>
  10. </head>
  11. <body>
  12. <?php
  13. $serverName = "server61.web-hosting.com";
  14. $username = "quadcrer_all";
  15. $password = "*****";
  16. $DB = "quadcrer_main";
  17. $results = array();
  18.  
  19.  
  20. $conn = mysqli_connect($serverName, $username, $password, $DB);
  21.  
  22.  
  23. $sql = "SELECT * FROM MERCH";
  24.  
  25.  
  26. $result = $conn->query($sql);
  27.  
  28. while ($row = mysqli_fetch_assoc($result)) {
  29. array_push($results,$row);
  30. }
  31.  
  32. ?>
  33.  
  34. <script>
  35. var merchData = </script><?php json_encode($results); ?>
  36.  
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement