echo " <table bgcolor='#d3fcfe' align='center'> ";
while ($row = mysql_fetch_array($result)) {
echo '</div> <tr onmouseout="this.bgColor=\'#d3fcfe\';" onmouseover= "this .bgColor=\'#fffdcd\';" > ';
$numq2=$row['username'] ;
{
echo '<td ><div class="iddiv"> <input name="" type="text" value="$numq2" /> <div> </td> ';
}
echo ' </table>';
}
我想将$ numq2 Var的数据输出到textfield的值中。但是我的代码出了点问题。它将textfield的值打印为“ $ numq2”。我的脚本出了什么问题?
最佳答案
这个
echo '<td ><div class="iddiv"> <input name="" type="text" value="$numq2" /> <div> </td> ';
应该成为
echo '<td ><div class="iddiv"> <input name="" type="text" value="'.$numq2.'" /> <div> </td> ';
注意
'.
周围的.'
和$numq2
关于php - 在while循环中回显文本字段值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6206807/