File "index-auto.php.txt"
Full path: /www/wwwroot/fabriciovc.eti.br/downloads/html_php/index-auto.php.txt
File size: 520 B
MIME-type: text/html
Charset: utf-8
<html>
<head>
<title>ALL COMP Intranet</title>
</head>
<body>
<table>
<tr>
<td>
<img src="allcomp.jpg" alt="ALL COMP" />
</td>
</tr>
<tr>
<td> </td>
</tr>
<?php
$diraberto = opendir("./");
while($arq = readdir($diraberto))
{
if($arq == ".." || $arq == "." || $arq=="index.php" || $arq=="ocomon-bkp" || $arq=="allcomp.jpg")
{
continue;
}
?>
<tr>
<td>
<ul>
<li><a href="<?=$arq;?>"><?=$arq;?></a></li>
</ul>
</td>
</tr>
<?php
}
?>
</table>
</body>
</html>