Advertisement
Guest User

Untitled

a guest
Jan 27th, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. ...config.php....
  2. <?php
  3. $db=Array("host"=>"localhost",
  4. "login"=>"admin",
  5. "pass"=>"qwerty",
  6. "db"=>"test",
  7. "charset"=>"utf8"
  8. );
  9. ...
  10. .....index.php....
  11. include "config.php";
  12. $mysqli = new mysqli($db["host"],$db["login"],$db["pass"],$db["db"]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement