Nebylo by takhle lepší?puschpull [2497]: Přiznám se, že tak, jak jsi to sem vyblil Ty, bych se ani neobtěžoval to číst, natož zkoumat. Štěstí, že jiní jsou tolerantnější.
$id = $GLOBALS["HTTP_GET_VARS"]["id"];
$path = empty($HTTP_SERVER_VARS["PATH_INFO"]) ? $HTTP_SERVER_VARS["PHP_SELF"] : $HTTP_SERVER_VARS["PATH_INFO"];
@$dirhandle = opendir( "$directory/thumbs" );
$pic_count = 0;
while( $file = readdir( $dirhandle ) ) {
if (eregi("(gif|jpg|jpeg)$",$file)) {
$pic_list[$pic_count++] = $file;
}
}
$output = '<table border=3 bgcolor="#AFEEEE">';
if ($pend>$pic_count) $pend=$pic_count;
$output .= '<tr>';
for ($i=0;$i<$pic_count;$i++) {
for ($j=0;$j<=2;$j++) {
$output .= '<td>';
$output .= '<a href="'.$directory.'/large/'.$pic_list[$i].
'" class="highslide" onclick="return hs.expand(this)">'.
'<img src="./'.$directory.'/thumbs/'.$pic_list[$i].'" title="Click to enlarge: '.
$pic_list[$i].'" /></a>'."\n";
$i++;
}
$output .= '</td>';
$output .= '</tr>';
}
$output .= '</table>';
return $output;
|