我用這個代碼發送一個表單+一個變量到一個php腳本。jquery發佈表單和變量一起
function upload() {
var test = "test";
var infos = $('form').serialize() + '&' + test;
$.post("ajax.php", { infos: infos }).done(function (data) {
alert(data);
});
}
現在PHP-代碼:
$data = $_POST['infos'];
echo $data;
回報:formfield1 =值& formfield2 =數值& formfield3 =值3 &測試
所有值都在這個變量... 但我可以如何使用它們與PHP分開?
例如:
$data = $_POST['formfield1'];
沒有工作:(
[explode()](http://php.net/explode) – ElGavilan