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