help me write this mysql query in codeigniter |
Try this one I hope it will help you get what you are looking for.
in your controller. Either you autoload the database in autoload file or you load it to the controller straight by PHP Code: $this->load->database(); // within the controller but I prefer autoload in your model just continue with PHP Code: public function searchListing($data, $location) { I used the chaining method which is the shorter method. So try it I hope it will help you. If you are facing more problem and confused let me know either you private message me or drop your problem here. I am here to help |
Messages In This Thread |
help me write this mysql query in codeigniter - by acebay - 11-11-2019, 06:12 PM
RE: help me write this mysql query in codeigniter - by php_rocs - 11-11-2019, 07:48 PM
RE: help me write this mysql query in codeigniter - by acebay - 11-11-2019, 08:04 PM
RE: help me write this mysql query in codeigniter - by mboufos - 11-12-2019, 03:06 AM
RE: help me write this mysql query in codeigniter - by Chivinsdev - 11-12-2019, 03:12 AM
RE: help me write this mysql query in codeigniter - by acebay - 11-12-2019, 04:43 AM
RE: help me write this mysql query in codeigniter - by Chivinsdev - 11-12-2019, 04:46 AM
RE: help me write this mysql query in codeigniter - by Piotr - 11-12-2019, 09:27 AM
RE: help me write this mysql query in codeigniter - by acebay - 11-12-2019, 03:49 PM
RE: help me write this mysql query in codeigniter - by Chivinsdev - 11-18-2019, 07:34 AM
RE: help me write this mysql query in codeigniter - by antonymarc - 12-18-2019, 01:32 AM
|