All pastes #614799 Raw Edit

Unnamed

public php v1 · immutable
#614799 ·published 2007-07-11 19:51 UTC
rendered paste body
$target_path = "img/";		$thumbTarget = "img/thumb_";	$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);		$thumbTarget = $thumbTarget . basename( $_FILES['uploadedfile']['name']);		$unsorted = scandir($photo_location);        foreach ($unsorted as $filename) {	        if(ereg("thumb",$filename)) {		    	$images_list[] .= $filename;	        }        }        $numImgs = count($images_list);	echo $target_path;	echo "<br />";	echo $thumbTarget;	echo "<br />";	echo $numImgs;