how to count the days different between two give date.
like
1999-01-20 to 2000-10-02 is there any function to do this????? thx
try it: round((mktime(0,0,0,10, 2, 2000) - mktime(0,0,0,1, 20, 1999)) / (606024))
This does work awesome