| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/playwithfaye.com/public_html/free2/admin/ |
Upload File : |
<style type="text/css">
<!--
div.scroll {
height: 150px;
width: 280px;
overflow: auto;
border: 1px solid #666;
background-color: #ffffff;
padding: 10px;
}
-->
</style>
<?php
echo $dir = "/free/incoming/";
$dataset = array(); // Will hold all our data returned from DB
$i=''; // Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if($file <>'.' && $file <>'..') {
$dataset[$i++] = $file;
}
}
closedir($dh);
}
}
sort($dataset);
?>
<table border="0" width="100%" cellspacing="0" cellpadding="0" >
<tr>
<th align="center" width="100%">
<div style="background-color:#582023; font-size:14px; font-weight:bolder; border-bottom:ridge 2px #ffddb0; color:#ffddb0; ">FILENAME</div>
</th>
</tr>
</table>
<div class="scroll">
<table width="100%">
<?php foreach($dataset as $sarowp) { ?>
<tr>
<td align="left" width="10%"><input name="photoset" type="radio" value="<?php echo $sarowp; ?>"></td>
<td align="left" style="font-size:9px;"><?php echo $sarowp."<br>"; ?></td>
</tr>
<?php } ?>
</table>
</div>