View Single Post
Old 12-13-2011, 07:23 AM  
v4 media
Confirmed User
 
v4 media's Avatar
 
Industry Role:
Join Date: Feb 2005
Location: Spain
Posts: 2,934
Quote:
Originally Posted by Zoxxa View Post
Just to build off Fris' code and recommendation.

Code:
<?php

// Only allow integar values
$thumb = preg_replace('/[^0-9]/', '', $_GET['t']) . '.jpg';

// If no thumb set, use default thumb
if(empty($thumb)) {
	$thumb = 'default.jpg';
}

// Output thumb
echo $thumb;

?>
thanks, reading up now.
v4 media is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote