为什么我的while循环后我的文本框会空白?
如果我删除while循环,数据会显示?
这是下面的表格。
<form name="form" method="post" action="">
<input type="hidden" name="new" value="1" />
<p><input type="text" name="res_veop_id" placeholder="Enter VEOP ID" required value="<?php echo $row["res_veop_id"]; ?>"/></p>
<p><select class="selectpicker" name="res_title">
<option value="<?php echo $row["res_title"]; ?>"><?php echo $row["title_name"]; ?></option>
<?php
$title_count=1;
$title_sel_query="Select * from `tbl_title` ORDER BY `title_id` asc;";
$title_result = mysqli_query($con,$title_sel_query);
while($row = mysqli_fetch_assoc($title_result)) { ?>
<option value="<?php echo $row["title_id"]; ?>"><?php echo $row["title_name"]; ?></option>
<?php $title_count++; } ?>
</select>
</p>
<p><input type="text" name="res_first_name" placeholder="Enter Firstname" required value="<?php echo $row["res_first_name"]; ?>"/></p>
<p><input type="text" name="res_last_name" placeholder="Enter Lastname" required value="<?php echo $row["res_last_name"]; ?>"/></p>
<p><input type="text" name="res_dob" placeholder="Enter Date of Birth" required value="<?php echo $row["res_dob"]; ?>"/></p>
答案 0 :(得分:1)
您可以在代码中使用变量$row
来处理值,这些值将显示在整个页面上。
在while循环中,覆盖循环头中的变量$row
。由于它是一个while循环,它将一直运行,直到$ row为空。因此,对$ row的所有后续调用都不会返回任何内容。
我建议你重命名变量:
while($option = mysqli_fetch_assoc($title_result)) { ?>
<option value="<?php echo $option["title_id"]; ?>"><?php echo
$option["title_name"]; ?></option>
<?php $title_count++; } ?>