PHP JSON gönderme

0 Cevap php

I jQuery üzeri PHP sayfasına JSON göndermek için tring değilim, ancak düzgün çalışmıyor:

json_data = {};
json_data.my_list = new Array ();

$('#table_selected tr').each (function (i) {
    json_data.my_list.push ({id:$(this).attr("id")});
});

$.post ("my_page.php", json_data, function (response) {
    if (response) alert("success");
    else alert("error");
});

<?php
// this is my_page.php
$json = json_decode (stripslashes ($_REQUEST['my_list']), true);
echo var_dump($json);

?>

Yanılıyorsam burada, NULL Benim callback döner?

0 Cevap