私が単純なフォームを持っている場合、次のようなものです:
<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 フォームで、名前フィールドの「Username*:」値、つまり、実際のフィールドの各フォーム フィールドの横に表示される値を確認する方法はありますか。横に可変文字列を表示するフィールドを作成したいのですが、それをphpスクリプトに渡す方法がわかりません。include や require には興味がありません。どうもありがとう。