3

我有一个功能,允许成员在登录后更新他们的个人详细信息,更新页面具有用户将填写的表单,当按下提交按钮时,deatils 会更新。这很好用,我想在表单中的适当文本字段中显示用户当前的详细信息,例如名字文本字段将具有值“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>

任何帮助深表感谢

4

2 回答 2

1

echo '<input type="text" value="'. $someValue .'" />';

或者

<input type="text" value="<?php echo $someValue; ?>" />

两者显然都要求您位于 .php 文件中,并且该文件$someValue包含要设置的适当值。还要注意值周围的双引号。没有它们,任何空格都会在渲染时破坏值。

于 2012-05-02T19:52:30.707 回答
1

在文本框中打印值。

<input type="text" value="<?php echo $someValue; ?>" />

于 2012-05-02T19:54:02.637 回答