Hi..
Is there any script to check the current date in PHP?
I want to use this function to display a date from mysql db, and if the date from the db is the same as todays date, then display "TODAY" instead...
Thanks...
|
|
|||||
|
|
|
To get the current timestamp (seconds since 1970), use To convert that into pretty much any format you want, use To compare, there's a number of ways you could do it, but I think the simplest would be this:
|
||
|
|
|
|
Do something like this:
The above will give you the date in 'yyyy-mm-dd' format, then you need to get the date from PHP.
This gives the same format as above. You can then do something like this
This assumes of course that the date.timezone has been set in the ini file or you can call date_default_timezone_set() to avoid warnings in Strict mode. |
||
|
|
|
|
Just thought I'd point out that MySQL has a function for this:
http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html |
||
|
|
|
|
run a SQL query something like:
You will then be checking for todays date, get more info on the date() fn here: http://us3.php.net/manual/en/function.date.php |
||
|
|
|
|
How about using the date function |
||
|
|