次のphpファイルがあります。displayitems.php
<?php
*
*
*
echo "<form action='http://retailthree.nn4m.co.uk/alex/add_data.html'>";
echo "<input type='hidden' name='value' value='$value'/>";
echo "<button type='submit'>Add</button>";
echo "</form>";
?>
次にhtmlファイル。add_data.html:
<form method="post" name="form">
<table id="mytable" border="1">
<tr>
<td>Trend <input type="text" name="trend" size="20"></td>
//many other fields
</tr>
</table>
</forn>
次に、前述の html が php ファイルに対してアクションを実行します。しかし、私が達成したいのは、最初のphpファイルから隠しデータ-> $valueをトレンド入力ボックスに渡すことです($valueの内容を入力ボックスに出力するため)。これは可能ですか?