我有一个功能,允许会员在登录后更新他们的个人详细信息,更新页面包含用户将填写的表单,当按下提交按钮时,更新了deatils。这很好用,我想在用例如表格的相应文本中显示用户当前的详细信息。 firstname文本字段的值为“James”,用户可以删除它以输入“jim”。是否与向表单字段添加值有关?我的表格如下所示。
<tr>
<td width="78">Firstname</td>
<td width="6">:</td>
<td width="294"><input name="firstname" type="text" id="firstname"></td>
</tr>
<tr>
<td width="78">Surname</td>
<td width="6">:</td>
<td width="294"><input name="surname" type="text" id="surname"></td>
</tr>
非常感谢任何帮助
答案 0 :(得分:1)
echo '<input type="text" value="'. $someValue .'" />';
OR
<input type="text" value="<?php echo $someValue; ?>" />
两者显然都要求您在.php文件中,并且$someValue
包含要设置的适当值。注意价值附近的双引号。没有它们,任何空格都会在渲染时破坏它。
答案 1 :(得分:1)
在文本框内打印值。
<input type="text" value="<?php echo $someValue; ?>" />