Hi,
Does PHP have a function that will return the day of the year for a certain date.
Thanks, Ron
date('z', <timestamp>)
thanks!
I found something like that in the php manual. The dates look like dd-mm-yyyy. I guess I first have to convert this to for example: '10 january 2003' and do:
date('z',strtotime('10 January 2003'))