'; $g = 0; while ($row_gallery = @mysql_fetch_array($result_gallery)) { $img_url = '../artists_files/'.$_REQUEST['ArtistID'].'/ArtistImages/'.$row_gallery['ImageID'].'_small.jpg'; $img_src = realpath($img_url); if(!file_exists($img_src)) { continue; } list($img_w,$img_h) = getimagesize($img_src); $img_size = ""; if($img_w > 90 || $img_h > 70) { if($img_w < $img_h) { $img_size = 'height="70"'; } else { $img_size = 'width="90"'; } } echo ' '; } echo '
'; @mysql_close(); ?>