Welcome Guest, Not a member yet? Register   Sign In
SOLVED: Changed to Unix date format, now I don't know how to just show the last months entries.
#1

[eluser]Joakim_[/eluser]
Hello.

Since I switched to store the dates in unix format I have run into a problem.

Before I stored the dates as "m/d/Y" and could filter to show only the last months entries with the code below:

Code:
$this->db->where('MONTH(entry_date)', date("m",strtotime("-1 month")));

Now this code wont work. Anyone know how to edit this code to work with unix time stamp stored in the db?

Thanks a lot! Smile
#2

[eluser]Pascal Kriete[/eluser]
I think something like this should do the trick:

Code:
$this->db->where('entry_date >', strtotime("-1 month") );
#3

[eluser]Joakim_[/eluser]
[quote author="inparo" date="1221429864"]I think something like this should do the trick:

Code:
$this->db->where('entry_date >', strtotime("-1 month") );
[/quote]

Awesome! It working when using "<". Thank you a lot. Smile




Theme © iAndrew 2016 - Forum software by © MyBB