Skip to content

Tag: codeigniter

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 th…