How to make a request using javascript or jquery with CodeIgniter 4. |
To grab data from the get you can use:
$this->input->get('some_data', TRUE); there is one more handy method: $this->input->get_post('some_data', TRUE); |
Messages In This Thread |
How to make a request using javascript or jquery with CodeIgniter 4. - by marcelo norberto - 01-15-2020, 06:39 AM
RE: How to make a request using javascript or jquery with CodeIgniter 4. - by marywilliams - 01-15-2020, 10:35 PM
|