Advertisement
Guest User

Untitled

a guest
Jul 29th, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $mysqli = new mysqli(HOST, USER, PASSWORD, DATABASE);
  2.  
  3. $mysqli-> set_charset("utf8");
  4.  
  5. $stmt = $mysqli->prepare("select header, title, footer, head from configs");
  6.  
  7. $stmt -> execute();
  8.  
  9. $stmt -> bind_result($header, $title, $footer, $head);
  10.  
  11. $stmt -> fetch();
  12.  
  13. echo $header;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement