我正在研究这个MySQL表,我想在文本字段中显示数据。我可以将数据提取到div中,我需要在文本字段中。有什么想法吗。?? 这是我的代码放在文本字段内,它不会工作.. :(
echo "<td width='517'>""<input type='text' value='. $row['firstName'] .'/>" "</td>";
答案 0 :(得分:2)
试试这个
echo "<td width='517'><input type='text' value='".$row['firstName']."'/></td>";
答案 1 :(得分:2)
以下三种方法可以做到这一点:
使用单引号
echo '<td width="517"><input type="text" value="'. $row['firstName'] . '"/></td>';
使用双引号
echo "<td width=\"517\"><input type=\"text\" value=\"$row[firstName]\"/></td>";
不使用引号
<td width="517"><input type="text" value="<?php echo $row['firstName'] ?>"/></td>