RE: [PHP-DB] Converting Date Form Fields

2001-11-16 Thread matt stewart
put them into an array $date_stuff[0] = $date_year; $date_stuff[1] = $date_month; $date_stuff[2] = "01"; $date_to_enter = join('-',$date_stuff); then whack $date_to_enter into your database - obviously if the input to $date_month is "

RE: [PHP-DB] Converting Date Form Fields

2001-11-16 Thread Zach Curtis
E: [PHP-DB] Converting Date Form Fields put them into an array $date_stuff[0] = $date_year; $date_stuff[1] = $date_month; $date_stuff[2] = "01"; $date_to_enter = join('-',$date_stuff); then whack $date_to_enter into yo