Hi there!
i need to make a script that captures two dates from a list menu (YYYY/MM/DD)
and i want to it calculates the number of days between those two dates
i have a big problem with it..... i could proggram it but i doesnt have time for it.. it's urgent
Someone has a idea that where do i can get something like it?
Tks/ Rgds
Jose - try searching the Code Library here on PHP Builder... or at zend.com.
good luck... Eric
Hi Eric
i was trying of find something that can helps me
but i didnt find anything yet.....
i have a big problem with that...
Tks...
Sounds like maybe you should hire someone to write it, if you don't have the time to do it, you need it urgently and you can't find it anywhere online.
btw-- hope that last message of mine didn't come across as harsh or anything. I'm just suggesting that paying an expert is another way to find a solution; in light of you needing it urgently, that seems like a smart idea at this point in the evolution of your problem.
best, Eric
function GetTime($d) { return mktime(0,0,0,substr($d,5,2),substr($d,8,2),substr($d,0,4),0); }
$days=(GetTime($d2)-GetTime($d1))/3600/24;
Did you really need an "expert" for that ?