Advertisement
Guest User

Untitled

a guest
Dec 24th, 2016
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Fatal error: Call to a member function set_charset() on a non-object in /home/vhosts/galgonews.xp3.biz/includes/connect_database.php on line 3
  2.  
  3. $host ="host";
  4. $user ="username";
  5. $pass ="_passhere_";
  6. $database = "database";
  7.  
  8. // variables.php
  9. $connect = new mysqli($host, $user, $pass, $database);
  10.  
  11. /* check connection */
  12. if ($connect->connect_errno) {
  13. printf("Connect failed: %sn", $connect->connect_error);
  14. exit();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement