
PK 
<?php
require('config.php');
$urlPath = $siteUrlMain;
?>
<style>#prev{display:none;}</style>
<table style="width:100%" id="prev">
<tr>
<td style="vertical-align:top">
<div id="library_cont" style="height:200px;overflow:scroll">
<?php
if ($handle = opendir("../../../../../image/uploads/")) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo '<a href="#'.$urlPath."image/uploads/".$file.'" rel="image_src"><img src="'.$urlPath.'timthumb.php?src='.$urlPath."/image/uploads/".$file.'&h=80&w=100&zc=1" ></a>';
}
}
closedir($handle);
}
?>
<div style="clear:both"></div>
</div>
</td>
</tr>
</table>


PK 99