0
0

More than 3 years have passed since last update.

10~70歳までのドロップダウン

Posted at

forとwhileの違い

Qiita投稿2回目。

for.php
<?php print('<h3>for年齢</h3>'); ?>
<form action="output.php" method="get" accept-charset="utf-8">
<select name="age" id="age">
<?php
for ($i=10; $i<=70; $i++) {
    print('<option value="'.$i.'">'.$i.'歳</option>');    # code...
}
?>
</select>
<input type="submit" value="送信する" />
</form>
while.php
<form action="output.php" method="get" accept-charset="utf-8">
<?php print('<h3>while年齢</h3>'); ?>
<select name="age" id="age">
<?php
$i=10;
while ($i <=70) {
    print('<option value="'.$i.'">'.$i.'歳</option>'); 
    $i++; 
}
?>
</select>
<input type="submit" value="送信する" />
</form>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0