Questions tagged [codeigniter-query-builder]

95 questions
-1
votes
2 answers

How to join a master table with 2 tables for getting count of master table primary id in 2 tables and with master table information in codeigniter

I have a master table its name is "user" table it contain all information of user and there are two tables "business_list" and "classified_list". I want to show all user information with total number of business from business_list table and total…
Sherin Green
  • 308
  • 1
  • 3
  • 18
-1
votes
5 answers

A non-numeric value encountered mysqli

A non-numeric value encountered on line number 51 means this line it show me an error non-numeric value ->update('purchase',array('item_qty'=>'item_qty'+$item_qty)); function upd_sales($upd_sales) { $item_name=$upd_sales['item_name']; …
-1
votes
3 answers

Get data From database according to id in view : Codeigniter

i am newbie to codeigniter my city table structure is like id,name,state_id Now in view i get all data of city but i wants to also print state name.but in city table i have only state id.so how can i get state name in view This is My…
-1
votes
3 answers

How to show/display images in codeigniter?

I am trying to display the images of my Houses from the folder but it shows the error like this http://localhost/jageerx/assets/images/House/assets/images/House28278954_957081961107785_391331158313648576_n.jpg 404 (Not Found) My code is…
-2
votes
3 answers

Convert array to string in codeigniter

I have a function in controller like this. I need to insert result from $data1['hasil1'] to tampilInduk . public function sikap(){ $person=$this->session->userdata('idperson'); $data1['hasil1']=$this->M_Guru->tampilNik($person); …
1 2 3 4 5 6
7