Hi;
I use ajax submit a form but I get the error
Here is the code
This is the form
And on the other page
I use ajax submit a form but I get the error
Quote:Disallowed Key Characters.?array_emails
Here is the code
PHP Code:
////
$("#save_now_button").click(function()
$.post('<?php echo base_url("add_multiple_monitor_edit_access?"); ?>?' + $("#add_access").serialize(), {}, function (response) {$('#access_results_div').html(response);}));
////
This is the form
Code:
<form id="add_access" method="post">
<input id="array_emails" name="array_emails" type="text">
<div class="row" id="tr_1474294343512">
<div class="col-md-5 section-header"><input style="border:none; background:none; background-color: transparent;" name="email[]" id="email_1474294343512" value="asdf@ww.ll" type="text"></div>
<div class="col-md-4 section-header"><input value="edit" name="edit_monitor_1474294343512" id="edit_1474294343512" type="checkbox"> Edit</div>
<div class="col-md-2 section-header"><input name="edit_monitor_1474294343512" id="monitor_1474294343512" value="monitor" type="checkbox"> Monitor</div>
<div class="col-md-1 section-header"><i class="fa fa-trash-o" aria-hidden="true" onclick="remove_email_row('tr_1474294343512', 'email_1474294343512')"></i></div>
</div>
<br>
</form>
And on the other page
PHP Code:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Add_multiple_monitor_edit_access extends CI_Controller {
public function index()
{
print_r($_POST);
}
}