at the top define default value of new thumb so that can be easily changed:
PHP Code:
$resizethumb = 50;
PHP Code:
$filesrc = 'dlf/i.php?f='.$files[$i].'&resize='.$resizethumb;
$thumb = '<img src="'.$filesrc.'" width="" height="" alt="'.$files[$i].'"/>';
PHP Code:
echo ''.$thumb.' <a href="'.$fileurl.'" class="'.$class.'"><img src="dlf/'.$icon.'" alt="'.$files[$i].'"/>';
PHP Code:
$width = isset($_GET['resize']) ? abs(intval($_GET['resize'])) : 50;
Btw in this way edited script DTD can be changed from Basic to Mobile and it will remain vaild markup.

Leave a comment: