PHP interesse |
|
Beste,
Ik heb een script gemaakt om een directory uit te lezen. Had net een klein foutje maar dit is opgelost.
Nu ben ik van plan dat de gebruikers het bestand ook kunnen downloaden.
Het gaat om de volgende code:
<fieldset>
<legend>Demo's</legend>
<br />
<table width="60%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="39%"><b> Name:</b></td>
<td width="14%"><b> kB:</b></td>
<td width="47%"><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="60%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="39%"> <a href="<?=$path.$file;?>"><?=$file;?></a></td>
<td width="14%"> <?=round(filesize($path.$file)/1024);?></td>
<td width="47%"> <?=date ("F d Y H:i:s.", filemtime($path.$file));?></td>
</tr>
</table>
<?php
}
}
}
?>
</fieldset>
<fieldset> <legend>Demo's</legend> <br /> <table width="60%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="39%"><b> Name:</b></td> <td width="14%"><b> kB:</b></td> <td width="47%"><b> Date:</b></td> </tr> </table> <?php while (($file = $dir->read()) !== false) { if ($file != '.' && $file != '..') { ?> <table width="60%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="39%"> <a href="<?=$path.$file;?>"><?=$file;?></a></td> <td width="14%"> <?=round(filesize($path.$file)/1024);? ></td> <td width="47%"> <?=date ("F d Y H:i:s.", filemtime($path.$file));? ></td> </tr> </table> <?php } } } ?> </fieldset>
* Nogmaals, ze moeten de file dus kunnen downloaden, doormiddel op <a href="<?=$path.$file;?>"><?=$file;?> te klikken en ze krijgen een venster ofzo
Bedankt alvast.
|