Guest User

Untitled

a guest
Mar 19th, 2016
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. if(isset($_POST['username'])){
  4.  $username = $_POST['username'];
  5.  $password = $_POST['password'];
  6.  
  7.  include_once '../../../koneksi.php';
  8.  $result = $mysqli->query("SELECT * FROM user WHERE username = 'adnin'");
  9.  
  10.  while($row = $result->fetch_object()){
  11.   echo $row->idUser."<br>";
  12.  }
  13. }
  14.  
  15. ?>
Add Comment
Please, Sign In to add comment