<form id="form3" name="form3" method="get" action="">
<tr>
<td align="left" ><input name="page" type="text" id="page" size="5" value="<?php echo $pageNumView; ?>"/></td>
</tr>
</form>
<form id="form4" name="form4" method="post" action="">
<tr>
<td width="84%"><input name="iddetails" type="text" id="iddetails" size="20" value="<?php echo $rows['product_id']; ?>"/> </td>
</tr>
</form>
私は2フォームを持っています。$_GET['page']
Form4で「iddetails」に入力するたびにForm3で削除したかったのです。私はそれを使用してみunset($_GET['page']);
ましたが、デバッガーのトレースを使用して動作していることがわかり、パラメーター「ページ」を削除しました。しかし、Form4 Input を再度使用してみましたが、$_GET['page']
まだそこにあり、完全には削除されませんでした。'iddetails' form4 で入力した場合、form3 の Params 'Page' を削除するにはどうすればよいですか?
この POST-REDIRECT-GET ソリューションについて読みました。