如何在html中将数据库值回显到输入字段

时间:2013-06-09 06:23:55

标签: php html mysql echo textfield

我正在研究这个MySQL表,我想在文本字段中显示数据。我可以将数据提取到div中,我需要在文本字段中。有什么想法吗。?? 这是我的代码放在文本字段内,它不会工作.. :(

echo "<td width='517'>""<input type='text' value='. $row['firstName'] .'/>" "</td>";

2 个答案:

答案 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>