我有問題發送數組在$ .post到PHP。 的var_dump結果是 「NULL」 JSON.stringify不工作..
JQUERY
var photobox = [];
photobox.push(e.target.result);
$.post("../modules/upload.php",{"images[]" : photobox, count : sum},
function(data)
{
$('.list').prepend(data);
}).done(function() {
$('#files').prop('disabled', false);
$('.file-search').html("Szukaj...");
$(".img-thumbnail").removeClass("first");
$(".img-thumbnail").first().addClass("first");
e.target.result都是Base64編碼
PHP
$images = $_POST['images'];
var_dump($images);
請參閱我的答案,它應該做你所要求的對於。 – FluxCoder
你想上傳圖片嗎? –
是的,保存在base64中的圖像。 –