Jump to content

Date and select menus


Eiolon

Recommended Posts

I have use a select menu for people to choose a date.  When it is inserted into the database, it is stored in DATE format (ex. 2009-12-31).

 

I accomplished it by doing:

 

$month = $_POST['month'];
$day = $_POST['day'];
$year = $_POST['year'];

$dp = $year.'-'.$month.'-'.$day;

 

Are there any tutorials on how to make it so when a user edits the record they can once again use a select menu to change the date?  I don't know how to separate them back out and call them back up.  Thanks!

Link to comment
https://forums.phpfreaks.com/topic/186524-date-and-select-menus/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.