otp.php 418 B

12345678910111213141516
  1. <?php
  2. $id = $_GET['id'];
  3. $link = mysqli_connect('localhost', 'root', 'LK|UHD£LIHkdh3`;ler3', 'isuzu_connect');
  4. //$link = mysqli_connect('localhost', 'root', '', 'isuzu_connect');
  5. $rows = mysqli_query($link, 'SELECT otpnumber from tbl_user where userid = ' . $id);
  6. //print 'SELECT otpnumber from tbl_user where userid = $id';
  7. $row = mysqli_fetch_assoc($rows);
  8. //print $otp = $row['otpnumber'];
  9. echo phpinfo();
  10. ?>