Retrieve JSON POST data in CodeIgniter

后端 未结 5 995
独厮守ぢ
独厮守ぢ 2020-11-28 13:03

I have been trying to retrieve JSON data from my php file.Its giving me a hard time.This is my code

Code in my VIEW:

var productDetails = {\'id\':ISB         


        
5条回答
  •  悲&欢浪女
    2020-11-28 13:29

    You only have your own answer.

    print_r($_POST);

    Return :

    Array
    (
        [id] => 234
        [qty] => 1
        [price] => 0.00
        [name] => dasdadsd2q3e!@!@@
    )
    

    Then how will you get : echo $id = $this->input->post('productDetails');

    You will get id by echo $id = $this->input->post('id');

提交回复
热议问题