https://github.com/blueimp/jQuery-File-Upload/wiki/PHP-MySQL-database-integration
少一大堆東西,根本看不懂…真的看了兩次,砍了一次放棄...
-----------------------
重點1:
form的用法是把
< input type="file" name="files[]" multiple >
這行放到 form中,記得form要有id,而input裡面id拿掉
-----------------------
另一種方式:是在
$(function () {
$('#fileupload').fileupload({
這裡面補上
formData: {example: 'test'}看了很多很多範列的....的結論,所以form不用button來submit,要用button來做,請看範例了。
-----------------------
-----------------------
重點2:在上傳的.php中,記得
bind_param('sisss', 這個奇怪的東西是對應你傳參數的型能,傳兩個參數是字串,那個只要ss就行了!
還有如果要測試直接設值,請$a="xxx",因為reference,要給變數,不能直接設值。
==================================
http://runnable.com/UZKDAYo3XEw2AACX/how-to-upload-a-file-using-jquery-for-php
這個是過期很久的範列....不適合 現在的版本
==================================
真心話:如果不堅持,用下面這個可能會比較快,因為下面這個寫的最完整直接,可以控制....
http://www.phpgang.com/how-to-upload-multiple-images-jquery-ajax-using-php_453.html