如果我有一个简单的表格,例如:
<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 脚本。我对包含或要求不感兴趣。非常感谢。