使用php for循环输出html <option>标记

时间:2016-10-13 17:54:24

标签: php html for-loop

php和html的新手,所以这些想法非常基础。我被要求在php中使用一个基本的for循环来输出html中的<option>元素。由于<option>元素不是变量,我该如何打印它们?

<select name="server" class="form-control">
              <option>Server 1</option>
              <option>Server 2</option>
              <option>Server 3</option>
              <option>Server 4</option>
              <option>Server 5</option>
<?php
    int $i;
    for($i=0;$i<=4;$i++)
        {

        echo $i+1; 
        }
 ?>

1 个答案:

答案 0 :(得分:0)

这是解决方案

    <select name="server" class="form-control">
     <?php for($i =1; $i <= 5; ++$i){
       echo "<option>Server $i</option>";
      } ?>
    </select>