PHPでpost変数のソースを見つける簡単な方法はありますか?
example.com/formone.php のフォーム
<form method="post" action="test.php">
<input name="myusername"type="text">
<input name="mypassword" type="password">
<input type="submit">
</form>
example.com/formtwo.php のフォーム
<form method="post" action="test.php">
<input name="myusername"type="text">
<input name="mypassword" type="password">
<input type="submit">
</form>
非表示の入力を使用できることは理解していますが、PHP に POST のソースをテストする方法があるかどうか疑問に思っていました。