RE: [PHP] How to get the local date formated like this: 2002-03-15 Y2K Problem

2002-03-05 Thread Niklas Lampén
date("Y-m-d"); Niklas -Original Message- From: Andy [mailto:[EMAIL PROTECTED]] Sent: 5. maaliskuuta 2002 9:59 To: [EMAIL PROTECTED] Subject: [PHP] How to get the local date formated like this: 2002-03-15 Y2K Problem Hi there, I am trying to find out how to get the local

[PHP] How to get the local date formated like this: 2002-03-15 Y2K Problem

2002-03-05 Thread Andy
Hi there, I am trying to find out how to get the local date in a format conform to this: 2002-03-15. The following code is a try, but it does not work like I want: $local_time = localtime(time() , 1); echo "Date: " . $local_time[tm_year].'-'.$local_time[tm_mon].'-'.$local_time[tm_mday]; Return