Þetta er á síðunni "http://hetjurnar.com/prof"
Head kóði :
<script type=“text/javascript” language=“javascript” src=“lytebox/lytebox.js”></script>
<link rel=“stylesheet” href=“lytebox/lytebox.css” type=“text/css” media=“screen” />
Body Kóði :
<?php
/* ERROR REPORTING ACTIVE !!! */
error_reporting(E_ALL);
function sizetoformat($size){
if($size<1024) return $size . ‘ B’;
if($size<1024*1024) return round($size/1024,2) . ‘ KB’;
else return round($size/1024/1024,2) . ‘ MB’;
}
//echo “<h1>Innsendar Skrár</h1>”;
echo “<hr>”;
//config
$dirpath = “./upload”;
echo “<table width=\”100%\“ border=\”0\“>”;
$dh = opendir($dirpath);
while (false !== ($file = readdir($dh))) {
//Don't list subdirectories
if (!is_dir(“$dirpath/$file”)) {
// hér er það sem kemur á síðunni… þ.e. listinn :)
//echo “<a href=\”$dirpath/$file\“ >” . htmlentities($file) . “</a> Stærð: ” . sizetoformat(filesize(“$dirpath/$file”));
echo “<tr>”;
echo “<td>”;
echo “<a href=\”$dirpath/$file\“ rel=\”lytebox[pics]\“>” . htmlentities($file) . “</a>”;
echo “</td>”;
echo “<td>”;
echo “Stærð: ” . sizetoformat(filesize(“$dirpath/$file”));
}}
closedir($dh);
echo “</td></tr></table>”;
echo “<hr>”;
?>
getið editað hann svo ég geti fengið hann til að sýna thumb (litlar smáar myndir) á síðunni?