Results 1 to 2 of 2
hello can any one tell ma how to make Date of Birth form in html....in short codes.....?
thanks
ashi...
- 06-02-2011 #1Just Joined!
- Join Date
- Mar 2011
- Posts
- 1
html form
hello can any one tell ma how to make Date of Birth form in html....in short codes.....?
thanks
ashi
- 06-02-2011 #2Linux Newbie
- Join Date
- Dec 2009
- Posts
- 241
Hi,
Well it depends on the fields you wanna use.
Since html is only the format as it is shown you could add following:
well if you can use a script it may look likeHTML Code:<select name="Year"> <option>1960</option> <option selected>1961</option> ... <option>2011</option> </select>
The same goes for the month and day.PHP Code:<select name="Year">
<?php
$i=1960;
$now=date("Y");
while ($i < $now) {
echo "<option";
if ($i == $selected_year) echo " selected";
echo ">$i</option>";
$i++;
}?>
</select>


Reply With Quote