Welcome Guest, Not a member yet? Register   Sign In
how is convert this code to CodeIgniter code?
#4

[eluser]Eric Barnes[/eluser]
You just need to make sure your query actually generates results before you loop it. Also:

Code:
$query = $this->db->order_by("id", "desc")->like('name', '$searchterm')->get('hotel_submits');
should be
Code:
$query = $this->db->order_by("id", "desc")->like('name', $searchterm)->get('hotel_submits');


Messages In This Thread
how is convert this code to CodeIgniter code? - by El Forum - 07-14-2011, 09:10 AM
how is convert this code to CodeIgniter code? - by El Forum - 07-14-2011, 09:32 AM
how is convert this code to CodeIgniter code? - by El Forum - 07-14-2011, 09:35 AM
how is convert this code to CodeIgniter code? - by El Forum - 07-14-2011, 10:01 AM
how is convert this code to CodeIgniter code? - by El Forum - 07-14-2011, 10:11 AM
how is convert this code to CodeIgniter code? - by El Forum - 07-14-2011, 10:13 AM
how is convert this code to CodeIgniter code? - by El Forum - 07-14-2011, 10:23 AM
how is convert this code to CodeIgniter code? - by El Forum - 07-15-2011, 02:26 AM
how is convert this code to CodeIgniter code? - by El Forum - 07-15-2011, 07:33 AM



Theme © iAndrew 2016 - Forum software by © MyBB