-
Notifications
You must be signed in to change notification settings - Fork 4
/
for.php
28 lines (28 loc) · 913 Bytes
/
for.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<form>
<select name="dia">
<?php for($i = 1; $i <= 31; $i++): ?>
<option value="<?php print $i; ?>"><?php print $i; ?></option>
<?php endfor; ?>
</select>
/
<select name="mes">
<?php for($i = 1; $i <= 12; $i++): ?>
<option value="<?php print $i; ?>"><?php print $i; ?></option>
<?php endfor; ?>
</select>
/
<select name="ano">
<?php for($i = 1900; $i <= 2012; $i++): ?>
<option value="<?php print $i; ?>"><?php print $i; ?></option>
<?php endfor; ?>
</select>
</form>
</body>
</html>