Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. session_start();
  3.  
  4. require_once('authenticate.php');
  5.  
  6. $db = new mysqli('classroom.cs.unc.edu', 'rarora9', 'tjGHkxWAG0AIv492', 'rarora9db');
  7.  
  8. if($db->connect_errno > 0) {
  9. die('Unable to connect to database [' . $db->connect_error . ']');
  10. }
  11.  
  12. $drugs = array();
  13.  
  14. header("Content-type:application/json");
  15. // $test = array('prop1' => 'ABC', 'prop2' => 42, 'prop3' => 2 + 3);
  16. print(json_encode($drugs));
  17. exit();
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement