Results 1 to 4 of 4
Hybrid View
-
10th Oct 2012, 08:21 AM #1Member
I know your thread is kinda old but I worked this up anyways.
You can try it out here using the following url:
http://inputout.org/sandbox/dropdown.php
the url will accept 'd', 'm', and 'y' as parameters
ex: http://inputout.org/sandbox/dropdown...27&m=04&y=1978
will display 27, April, 1978 in the select boxes
if nothing is passed, it will default to 1, 01, 1960
you would of course, replace the GETs with the values from your database or some POST results
hope this helps.
PHP Code:<html>
<title>Dropdown Selecta</title>
<body>
<?php
$postedDay = isset($_GET['d']) ? (int)$_GET['d'] : 1;
$postedMonth = isset($_GET['m']) ? (int)$_GET['m'] : 01;
$postedYear = isset($_GET['y']) ? (int)$_GET['y'] : 1960;
?>
<select name="day" id="day" class="textfield validate-selection required">
<?php
$days = range(1,31);
foreach ($days as $day) { ?>
<option value="<?php echo $day; ?>"<?php echo $day == $postedDay ? " selected=\"selected\"" : ""; ?>><?php echo $day; ?></option>
<?php } ?>
</select>
<select name="month" id="month" class="textfield validate-selection required">
<?php
$months = array('01'=>'Jan', '02'=>'Feb', '03'=>'Mar', '04'=>'Apr', '05'=>'May', '06'=>'Jun', '07'=>'Jul', '08'=>'Aug', '09'=>'Sep', '10'=>'Oct', '11'=>'Nov', '12'=>'Dec');
foreach ($months as $key=>$value) { ?>
<option value="<?php echo $key; ?>"<?php echo $key == $postedMonth ? " selected=\"selected\"" : ""; ?>><?php echo $value; ?></option>
<?php } ?>
</select>
<select name="year" id="year" class="textfield validate-selection required">
<?php
$years = range('1960', '2012');
foreach ($years as $year) {?>
<option value="<?php echo $year; ?>"<?php echo $year == $postedYear ? " selected =\"selected\"" : ""; ?>><?php echo $year; ?></option>
<?php } ?>
</select>
</body>
</html>fairShare Reviewed by fairShare on . PHP - Drop down Hi I have one date field drop down : $day = $_POST; $mon = $_POST; $year = $_POST; $dob = $year . "-" . $mon . "-" . $day; $ins = array( Rating: 5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Rankings Drop
By GBot in forum Whitehat SEOReplies: 0Last Post: 14th Dec 2013, 08:41 PM -
HTC One X Drop Test Must See
By sahil00150 in forum General DiscussionReplies: 2Last Post: 23rd Apr 2012, 01:41 AM -
Anyone done Drop shipping?
By tinhead in forum Webmasters, Money MakingReplies: 7Last Post: 31st Jan 2012, 01:42 PM -
need help in drop down menu
By nfury007 in forum IP.BoardReplies: 3Last Post: 12th Jun 2011, 07:49 AM -
how to drop 1 packet ?
By Keosoft90 in forum Technical and Security TutorialsReplies: 2Last Post: 10th Apr 2011, 12:11 PM
themaCreator - create posts from...
Version 3.47 released. Open older version (or...