解析错误:语法错误,意外T_FOR

时间:2013-05-07 04:03:25

标签: php html

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

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

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

2 个答案:

答案 0 :(得分: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”

答案 1 :(得分:0)

无法使用您使用过的for

 <?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;
 ?>