Jump to content

[SOLVED] Insert date using drop down menus


Eiolon

Recommended Posts

Well...you just combine the form values together to make the date....

 

This is what the code should look like AFTER they submitted the form:

<?php

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

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

echo $full_date;

?>

 

Obviously this code has no input checking or anything, but it shows you the idea. Hopefully I am on the right track to what you are asking.

 

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.