Skip to content
Advertisement

Tag: codeigniter

How to display select option values base on the first option

I am using Codeigniter 3.1.1. I want City option to display base on the value selected with State option. Actually the City select option does not populate automatically when State option is selected. I tried to link the latest jQuery but still, it doesn’t work. Your help is highly appreciated. MyController.php View: Ajax: Answer You’ve not specified what problem you

update batch in codeigniter

I have data on db_temporary here I will update based on id_service, but why doesn’t the update work? public function updateUpload() { $db = $this->M_order->db_temporary_service(); //…

Codeigniter: Join between three tables

I’m trying to do a Join between three tables, in which in one table could not be informations to do the join. This my tables: Meetings id docent_id motivation Persons id name surname Companions id meeting_id name surname Now I want to recover the information where Meetings.docent_id = Persons.id (and this is ok), I want also recover information where Meetings.id

Advertisement