Screenshots
|
$filename = "";
for( $i = 0; $i < 300; ++$i )
{
if( $i > 100 )
{
$filename = "screenies/screenie".$i.".png";
$filethumb = "screenies/screenie".$i."_thumb.png";
}
else if( $i > 10 )
{
$filename = "screenies/screenie0".$i.".png";
$filethumb = "screenies/screenie0".$i."_thumb.png";
}
else
{
$filename = "screenies/screenie00".$i.".png";
$filethumb = "screenies/screenie00".$i."_thumb.png";
}
// test if thumbnail is there
if( file_exists( $filethumb ) )
{
// test if image is there
if( file_exists( $filename ) )
{
// file and thumb are there, show thumb with link
echo "\n";
}
else
{
// no file, but thumb, so show thumb without link
echo "\n";
}
}
}
?>
|
|
|