Advertisement
Guest User

functions.php

a guest
Jul 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2. // koneksi
  3. $conn = mysqli_connect("localhost","root","","blog");
  4.  
  5. function query($query){
  6.   global $conn;
  7.   $result = mysqli_query($conn, $query);
  8.  
  9.   $rows   = [];
  10.  
  11.   while ( $row = mysqli_fetch_assoc($result) ) {
  12.     $rows[] = $row;
  13.   }
  14.  
  15.   return $rows;
  16. }
  17.  
  18.  ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement