0

我正在尝试创建一个带有下拉菜单的 html 表单。下面是我的代码:

$output[]='<td><select name="qty'.$name.'">'
 for($count=1;$count<=$total;$count+=1) {
     '<option value="'.$count.'">'.$count.'</option>'
}
'</select>
 </td>';

谁能告诉我可能是什么问题?另外,如何将默认选定值设置为 1?

4

2 回答 2

7

你错过了分号:

$tmp ='<td><select name="qty'.$name.'">';
for($count=1; $count <= $total; $count+=1) {
     $tmp .= '<option value="'.$count.'"';
     if($count == 1) {
       $tmp .= ' selected="selected"';
     }
     $tmp .= '>'.$count.'</option>';
}
$tmp .= '</select></td>';
$output[] = $tmp;

更新:添加“将默认值设置为 1”

于 2013-05-07T04:05:05.617 回答
0

不可能像你一样使用

 <?php $temp='<td><select name="qty'.$name.'">';
  for($count=1;$count<=$total;$count+=1) {
  $temp.= '<option value="'.$count.'">'.$count.'</option>';
  }
  $temp.='</select>
  </td>';

  $output[]=$temp;
 ?>
于 2013-05-07T04:15:13.680 回答