Greetings!
I've posted this before, but there are always new readers so here's my script
solution. One of these days I'll make it a function or something, but this
should give you a good general idea of how to do such a thing in case you need
it again in the future.
btw: This also calculates
Hi Khuram
I use this function
function daysLeft($startDate,$endDate=false){
// convert to timestamps
$start_stamp = strtotime($startDate);
$end_stamp = ($endDate)?strtotime($endDate):time();
if($start_stamp > $end_stamp){
Hi
Is there any function avialable in PHP to calculate
the no of days by passing 2 dates like 1 argument is
1/1/2005 and the second one is 1/2/2005 then it
returns the no of days or how can i do that if there
is no builtin function .
Regards
Khuram Noman
3 matches
Mail list logo