I have the following query....
SELECT fixture_date FROM tbl_foot_games WHERE fixture_date < now() AND leagueid = '68' AND (type = '2' OR type = '12' OR type = '22' OR type = '32') GROUP BY fixture_date ORDER BY fixture_date
This is outputting the following....
1318876658 1319135858 1319395058 1319654258 1319913458 1320176258 1320435458 1320694658 1320953858 1321213058 1321472258
All of these timestamps are ahead of right now. Any idea why it is outputting anything?
I do however, need to change the now() to 3 days in the future. 72 hours!
Any ideas? Thanks :)