This is my last answer on your reaction.
First of all , last year I helped about 500 people with my answers in newsgroups.
This year I have helped over 300 people.
The support I give is REAL working code with a REAL working example.
I believe that just saying read the manual on page ... is not helpfull to people
at all. And sure it is not a question about being lazy or not.
It is about helping people ....and words only is 'nt enough that 's why
I always provide REAL working code and examples.
OK what about PRE-WRITTEN functions , it was not a bad answer but it is
not working on the server that I 'm working on.
So compiling this pear thing is not an option and much to time-consuming.
PHP is not my thing otherwise I won 't ask questions about it.
BUT you must read this answer :
Dear Gerry ,
I 'm suprized that you post messages in Newsgroups.
But because you have helped me a lot in the past ,
I ' m very happy that I can provide you an answer.
If you need other issues solved relating php you can always
contact me first.
Here we go :
so you have a $Dstamp date variable .....
try next
$NextDay=((strtotime ($Dstamp))+86400);
$format="d-M-y";
$fday="d";
$fmonth="M";
$fyear="y";
$NDAY=date($format,$NextDay);
echo $NDAY;
$Day=date($fday,$NextDay);
echo $Day;
$Mon=date($fmonth,$NextDay);
echo $Mon;
$Year=date($fyear,$NextDay);
echo $Year;
Have Fun ...
Jonathan
AND YES , that was the small detail I was looking after.
I 'm not saying there are other solutions but it helped me out.
If he would said to me try follow functions (strtotime and date) than
it would not helped me...even after studying the functions and find than
the answer by myself.
And no I won 't hire you for 13 lines of code .
Enjoy your day and don 't accuse people from mean things because
they wanted a better answer.
-Gerry