PHP interesse |
|
Beste,
Even snel een uitleg: Hieronder staat een stuk waarbij wij op de pagina: demo.php, de demo's laten zien die die in een bepaalde map ophaalt van een spel. Nu wil ik dat we de demo ook kunnen verwijderen. Hoe kan ik dit het beste aanpakken?
Bedankt alvast!
<fieldset>
<legend>Demo's</legend>
<br />
Path: <strong><?=$path;?></strong><br /><br />
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="44%"><b> Name:</b></td>
<td width="15%"><b> kB:</b></td>
<td width="41%"><b> Date:</b></td>
</tr>
</table>
<?php
$dir = dir($path);
while (($file = $dir->read()) !== false) {
if ($file != '.' && $file != '..') {
if (!is_dir($path . $file)) {
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="44%"> <a href="http://hltv.sorcer.nl/dl/<?=$file;?>"><?=$file;?></a></td>
<td width="15%"> <?=round(filesize($path.$file)/1024);?></td>
<td width="41%"> <?=date ("F d Y H:i:s.", filemtime($path.$file));?></td>
</tr>
</table>
<?php
}
}
}
?>
</fieldset>
<fieldset> <legend>Demo's</legend> <br /> Path: <strong><?=$path;?></strong><br /><br /> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="44%"><b> Name:</b></td> <td width="15%"><b> kB:</b></td> <td width="41%"><b> Date:</b></td> </tr> </table> <?php while (($file = $dir->read()) !== false) { if ($file != '.' && $file != '..') { ?> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="44%"> <a href="http://hltv.sorcer.nl/dl/<?=$file;?>"><?=$file;?></a></td> <td width="15%"> <?=round(filesize($path.$file)/1024);? ></td> <td width="41%"> <?=date ("F d Y H:i:s.", filemtime($path.$file));? ></td> </tr> </table> <?php } } } ?> </fieldset>
|