php - How I can uploads text files with HTML 5? -
i have following problem. use tutorial creating multiple file uploader: http://tutorialzine.com/2011/09/html5-file-upload-jquery-php/
but code uploding images. want code upload text files, not images. there possibility happen.
in file script.js changed type of file code, don't work.
// called before each upload started beforeeach: function(file){ if(!value.match(/\.(txt)|(csv)$/)){ alert('only txt , csv files!'); // returning false cause // file rejected return false; } },
the error message after uploadied files "your browser not support html5 file uploads!" changes should make work correctly? in advace !
Comments
Post a Comment