Welcome Guest, Not a member yet? Register   Sign In
Active record and date in where statement
#9

[eluser]mddd[/eluser]
Smilie, the code is ok. The question is: what is in $date.

CI's db->where() is mostly suited for comparing EQUAL things. If you say where($a, $b) it will basically find records where field $a has the value $b.
When things get a bit more complicated (like using functions in the Mysql code, or comparing 'larger than' etc. its works better to write the code yourself and put it in a single string. Compare that to "nothing" (empty string) and make sure that escaping is off (third parameter : false).

Then you get (like I wrote beforeSmile
Code:
$this->db->where('created >= NOW() - INTERVAL 1 DAY', '', false);

And that should work fine.


Messages In This Thread
Active record and date in where statement - by El Forum - 07-21-2010, 09:14 AM
Active record and date in where statement - by El Forum - 07-21-2010, 09:36 AM
Active record and date in where statement - by El Forum - 07-21-2010, 09:37 AM
Active record and date in where statement - by El Forum - 07-21-2010, 09:44 AM
Active record and date in where statement - by El Forum - 07-21-2010, 09:53 AM
Active record and date in where statement - by El Forum - 07-21-2010, 01:29 PM
Active record and date in where statement - by El Forum - 07-21-2010, 02:57 PM
Active record and date in where statement - by El Forum - 07-21-2010, 09:16 PM
Active record and date in where statement - by El Forum - 07-22-2010, 12:35 AM
Active record and date in where statement - by El Forum - 07-22-2010, 02:06 AM
Active record and date in where statement - by El Forum - 07-22-2010, 02:16 AM
Active record and date in where statement - by El Forum - 07-22-2010, 02:31 AM
Active record and date in where statement - by El Forum - 07-22-2010, 02:40 AM
Active record and date in where statement - by El Forum - 07-22-2010, 02:49 AM
Active record and date in where statement - by El Forum - 07-22-2010, 04:11 AM
Active record and date in where statement - by El Forum - 07-22-2010, 04:18 AM
Active record and date in where statement - by El Forum - 07-22-2010, 04:29 AM
Active record and date in where statement - by El Forum - 07-22-2010, 04:37 AM
Active record and date in where statement - by El Forum - 07-22-2010, 05:31 AM
Active record and date in where statement - by El Forum - 07-22-2010, 05:50 AM
Active record and date in where statement - by El Forum - 07-22-2010, 05:54 AM
Active record and date in where statement - by El Forum - 07-22-2010, 06:03 AM
Active record and date in where statement - by El Forum - 07-22-2010, 06:16 AM
Active record and date in where statement - by El Forum - 07-22-2010, 06:31 AM
Active record and date in where statement - by El Forum - 09-25-2010, 10:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB