How to collect Date of birth from php form and insert into mysql?
问题 I am new to programming, have done a few things but i have no idea how to collect dob information. How do i collect it from a form and how do i insert it? Do i use three fields: month/day/year and then in the db also have three columns? Is there a tutorial i can be pointed to? Thanks 回答1: Depending on what you're going to do with the data (if it's not going to be too complex), you could simply reformat the submitted form: $bday = date('Y-m-d',strtotime($_POST['userSubmittedBDay'])); and