Jquery Uploadify checkscript

Posted by Kevin McPhail on Stack Overflow See other posts from Stack Overflow or by Kevin McPhail
Published on 2009-11-18T02:29:42Z Indexed on 2010/03/26 23:03 UTC
Read the original article Hit count: 699

Filed under:
|
|

I am trying to implement the checkscript feature of uploadify in an asp.net mvc view but i can't determine what the key is i should be using on the controller side. Below is the php script but i am not very familiar with php and can't determine what php is scraping out of the httprequest. Has anyone implemented this? The documentation is a little sparse (as in nonexistent).

$fileArray = array();
foreach ($_POST as $key => $value) {
    if ($key != 'folder') {
    	if (file_exists($_SERVER['DOCUMENT_ROOT'] . $_POST['folder'] . '/' . $value)) {
    		$fileArray[$key] = $value;
    	}
    }
}
echo json_encode($fileArray);
?>

© Stack Overflow or respective owner

Related posts about uploadify

Related posts about jQuery