如果我有一个简单的表格,例如:
<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表单中查看name字段的“Username *:”值,换句话说,在实际字段中每个表单字段旁边显示的值。我问这个是因为我想创建一个在它旁边显示变量字符串的字段,我不知道如何将它传递给php脚本。我对包含或要求不感兴趣。 非常感谢。
答案 0 :(得分:0)
不,该信息不会通过表单传递。如果你想稍后使用它,你需要将它存储在其他地方。