Guest User

Untitled

a guest
Jun 15th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. $mysqli_hostname= "rush.matrix.msu.edu";
  3. $mysqli_user= "sarah";
  4. $mysqli_pass= "-----(pw.here)-----";
  5. $mysqli_db= "sarah_dev";
  6. $db= mysqli_connect($mysqli_hostname,$mysqli_user,$mysqli_pass) or
  7. die("problem connecting");
  8. //select db
  9. mysqli_select_db($db,$mysqli_db) or
  10. die("problem accessing db");
  11. ?>
Add Comment
Please, Sign In to add comment