Yes so I am using this, valums ajax fileupload: http://valums.com/ajax-upload/
With these settings:
function createUploader(){
var uploader = new qq.FileUploader({
element: document.getElementById('file-uploader-demo1'),
action: 'photo.php?mode=upload',
debug: true
});
}
Not on photo.php?mode=upload, I tried to handle the file that are being uploaded, by
if(isset($_FILES['qqfile'])){
$filename = $_FILES['qqfile']['name'];
$imageSizeInfo = getimagesize($filename);
}
It doesnt execute this, no $_FILES isset.. ? Have i forgotten anything to add in the script settings? And i tried to remove the if statement, then it just says getimagesize error needs parameter cannot be empty.