固定のユーザー名パスワードと 1 つの可変テキストがあります。
これは最初の方法ですが、安全ではありません:
<form action="http://site.com/foo.php" method="post">
<input type="hidden" name="username" value="user123" />
<input type="hidden" name="password" value="pass123" />
<input type="text" name="text" />
<input type="submit" />
</form>
これは 2 番目の方法です。これを完了してください。
index.html
<form action="foo.php" method="post">
<input type="text" name="text" />
<input type="submit" />
</form>
foo.php
$username = "user123";
$password = "pass123";
$text = $_POST["text"];
$url = "http://site.com/foo.php?text=".$text."&password=".$password."&username=".$username;
$urlを安全に投稿するには? (HTTPS なし)