how can i post data in Codeigniter using Ajax
问题 How can i post data in Codeigniter using Ajax, am so confused this is the first time i do ajax and Codeigniter together here is my ajax code i tried to send the data to the controller method ; This is my ajax $(document).ready(function(){ $('#register_form').submit(function(evt){ var postData = $(this).serialize(); $.ajax({ url: baseURL+"admin/Products/add_product", type:'post', data:{productData:postData}, success:function(data){ } }); }); }); this is my form <?php $attribute = array( 'id'=>