Hi Fredik,

> I have to dates that i want to check who is biggest.
> 
> This does not work:
> if( $date1 > $date2){
> ....
> 
> How can i check them?

Presumably they're in SQL format, or something similar? 

The easiest way is to convert them to unix timestamps (look into the date()
and mktime() functions to see how this is done).

Timestamps are integers representing the number of seconds since 1st January
1970, so comparisons are extremely easy :-)

Cheers
Jon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to