📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuries.com
/
chb_data
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
365.46 KB
0644
🗑️
⬇️
✏️
🔒
Editing: livesearch.php
<?php include "connect_to_mysqli.php"; include "every.php"; //get the q parameter from URL $q=$_GET["q"]; $sql = "SELECT all* from parcel WHERE user='$usid' && ren LIKE '%".$q."%' || phones LIKE '%".$q."%' "; $sql2 = mysqli_query($con,$sql); if (mysqli_affected_rows($con) == 0) { echo "<center style='color:black;'>Reciver's Address not Found!</center>"; } else { while($row = mysqli_fetch_array($sql2)) { $no = $row['adress']; $rname = $row['ren']; echo' <tr class="ter mx-3"> <td class="check" style="color:black;">'.$rname.'</td> <td class="check"><input type="text" class="form-control" name="pade" value="'.$no.'" style="border:none;"/></td> <td class="check"><input type="submit" name"submit" value="Select" class="submitn" /></td> </td></tr>'; }} ?>
💾 Save Changes