I'll explain what it is I want to do.
I want to be able to calculate the amount of months that have been passed since a date (the curent date that will change automatically once a day has passed) that can be submitted.
lets asume i've got an input box that gives a date
like 01-12-1996. (or three selct boxes if thats easier)
Together with the curent date (maybe from server, but my server is not in the same time area as I am)
i could calculate:
$months_passed = (date('Y') - date('Y', $time))*12 + date('m') - date('m', $time);
But how does a time stamp work....
I hope you understand what i've just said
Thanx in advance
Roel...