0

のテーブルがemployeeあり、そのテーブルにはone column named birthdateそのストアがありますdate in 2012/4/5 format

私が持っているphpページで3 drop down menu called year, month and date

誰でも私を助けることができます...3つの異なるドロップダウンメニューに日付を取得する方法?? thnx

4

2 に答える 2

1
in your PHP code use split method like this:

list($y,$m,$d) = split("/",$dob); // 2012/4/5

then use $y, $m and $d value as you want.
于 2013-05-23T09:27:08.617 に答える