php for循环的这段代码为什么不执行??
<?phpfor($i=0;$i<total;$i++){$sun_re=$db->query("select*fromt_pub_surevy_questionwher...
<?php for($i=0;$i<total;$i++){
$sun_re=$db->query("select * from t_pub_surevy_question where parent_question_id=$sun_rs[$i]['id']");
$sun_result=$sun_re->fetchAll();
?>
<li><?php echo $sun_rs[$i]['title']?></li>
<table>
<tr>
<td>
<ol style="list-style-type:upper-alpha" >
<?php foreach($sun_result as $rows){?>
<li ><?php if($type==1){?>
<input type="radio" name="radio" value="<?php echo $rows['id']?>"><?php echo $rows['answer']?>
<?php }if($type==2){ ?>
<input type="radio" name="checkbox" value="<?php echo $rows['id']?>"><?php echo $rows['answer']?>
</li></ol>
<?php }if($type==3){?>
<textarea rows="3" cols="3" name="textarea_sun"></textarea>
<?php }?>
<?php }?>
</td></tr>
</table>
<?php }?>
$sun_ws=$db->query("select * from t_pub_surevy where parent_id=$id");
$sun_rs=$sun_ws->fetchAll();
var_dump($sun_rs);
<?php for($i=0;$i<$total;$i++){
die("select * from t_pub_surevy_question where parent_question_id=$sun_rs[$i]['id']");
$sun_re=$db->query("select * from t_pub_surevy_question where parent_question_id=$sun_rs[$i]['id']");
为什么出来的结果是select * from t_pub_surevy_question where parent_question_id=Array['id']??$sun_rs[$i]['id']");为什么是个数组,而不是第一个值? 展开
$sun_re=$db->query("select * from t_pub_surevy_question where parent_question_id=$sun_rs[$i]['id']");
$sun_result=$sun_re->fetchAll();
?>
<li><?php echo $sun_rs[$i]['title']?></li>
<table>
<tr>
<td>
<ol style="list-style-type:upper-alpha" >
<?php foreach($sun_result as $rows){?>
<li ><?php if($type==1){?>
<input type="radio" name="radio" value="<?php echo $rows['id']?>"><?php echo $rows['answer']?>
<?php }if($type==2){ ?>
<input type="radio" name="checkbox" value="<?php echo $rows['id']?>"><?php echo $rows['answer']?>
</li></ol>
<?php }if($type==3){?>
<textarea rows="3" cols="3" name="textarea_sun"></textarea>
<?php }?>
<?php }?>
</td></tr>
</table>
<?php }?>
$sun_ws=$db->query("select * from t_pub_surevy where parent_id=$id");
$sun_rs=$sun_ws->fetchAll();
var_dump($sun_rs);
<?php for($i=0;$i<$total;$i++){
die("select * from t_pub_surevy_question where parent_question_id=$sun_rs[$i]['id']");
$sun_re=$db->query("select * from t_pub_surevy_question where parent_question_id=$sun_rs[$i]['id']");
为什么出来的结果是select * from t_pub_surevy_question where parent_question_id=Array['id']??$sun_rs[$i]['id']");为什么是个数组,而不是第一个值? 展开
2个回答
展开全部
for($i=0;$i<total;$i++){
好像是丢了一个$符号,应该修改为:
for($i=0;$i<$total;$i++){
对于引号里面的数组变量,应该使用{},例如:
"select * from t_pub_surevy_question where parent_question_id=$sun_rs[$i]['id']"
应该修改为:
("select * from t_pub_surevy_question where parent_question_id={$sun_rs[$i]['id']}");
好像是丢了一个$符号,应该修改为:
for($i=0;$i<$total;$i++){
对于引号里面的数组变量,应该使用{},例如:
"select * from t_pub_surevy_question where parent_question_id=$sun_rs[$i]['id']"
应该修改为:
("select * from t_pub_surevy_question where parent_question_id={$sun_rs[$i]['id']}");
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询