I would like to have a function that could display how many months it's been since a special date – with decimals if possible.
Anyone have an idea on how to make it? (In PHP)
I ended up doing the following:
$var = ((mktime(0,0,0,8,3,2009) - mktime(0,0,0,9,3,2009))/86400/30.4368499);
Your answers were helpful. James Goodwins was the one leading me to this so he get the "answer solved" mark.
|
|
|
||||
|
|
|
|
|||
|
|
|
Try this:
Although there's no validation on it of course. |
||
|
|
