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 !

http://www.script-tutorials.com/pure-html5-file-upload/


Comments

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -