One Hat Cyber Team
Your IP :
216.73.216.240
Server IP :
162.240.106.28
Server :
Linux server.ganesand.com 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64
Server Software :
Apache
PHP Version :
7.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
thoa
/
public_html
/
admin
/
Edit File:
check_enquiry.php
<?php include('config.php'); if(!empty($_POST["username"])) { $result = mysql_query("SELECT * FROM enquiry WHERE EQ_MOBILE='" . $_POST["username"] . "'"); $row = mysql_fetch_array($result); $i=1; $user_count = $row[0]; if($user_count>0){ do { echo " <div class='form-group col-sm-11'> <label for='exampleInputEmail1' > Count.:".$i."</label> </div> <div class='form-group col-sm-11'> <label for='exampleInputEmail1' style='color:red;'> Old Enquiry No.:</label> <input type='text' class='form-control' style='color:red;' value=".$row['EQ_NO']."> </div> <div class='form-group col-sm-11'> <label for='exampleInputEmail1' style='color:red;'> Old Enquiry Date.:</label> <input type='date' class='form-control' style='color:red;' value=".$row['EQ_DATE']."> </div> "; $i++; }while($row = mysql_fetch_array($result)); } else{ echo "<span class='status-available' style='color:green;'>It's New Enquiry.</span>"; } } ?>
Simpan