大家好 我正在努力从下拉菜单提交xml结果。 e头是否被提交并发送我选择的下拉值? 我的代码如下:
<?php
$total =count($xml3->accounts->children());
}
$str="<select name='myselection'>";
for($i=0; $i<$total; $i++) {
$str= $str . "<option value=".$xml3->accounts->account[$i]->id.">".$xml3->accounts->account[$i]->name. "</option>";
}
$str = $str. "</select>";
echo $str;
?>
答案 0 :(得分:0)