0

如果我有一个简单的表格,例如:

 <div class="main_account">
 <form name="create_account" action="create_account.php" method="post">

                <legend>Create Account</legend>
                <p><label for= "user" >Username*: </label><br/><input type="text" name="user" />
                <p/>
                <p><label for= "password" >Password*: </label><br/><input type="password" name="password" />
                <p/>
..........

有没有办法在 create_account.php 表单中查看名称字段的“用户名 *:”值,换句话说,实际字段中每个表单字段旁边显示的值。我问这个是因为我想创建一个在其旁边显示变量字符串的字段,但我不知道如何将它传递给 php 脚本。我对包含或要求不感兴趣。非常感谢。

4

1 回答 1

0

不,该信息不会通过表格传递。如果您以后想使用它,您需要将它存储在其他地方。

于 2012-06-25T21:59:57.367 回答