PHPでURLの変数を次のページにどのように取得できますか?PHPでGET変数が見つからない理由を見つけるには
ユーザーがURL
http://localhost/codes/index.php?ask_question&[email protected]&passhash_md5=202cb962ac59075b964b07152d234b70
彼は質問を送り、彼は変数がいくつかの未知の理由のためにそれらの値を失った次のURLに行くです。
http://localhost/codes/index.php?question_sent&email=&passhash_md5=
次のコードは、コードhandle_a_new_question.phpあります。
$result = pg_prepare($dbconn, "query77", "INSERT INTO questions
(body, title, users_user_id)
VALUES ($1, $2, $3);");
$result = pg_execute($dbconn, "query77", array($body, $title, $user_id));
if(isset($result)) {
$header = ("Location: /codes/index.php?"
. "question_sent"
. "&"
. "email="
. $_GET['email'] // this seems to be correct to me
. "&"
. "passhash_md5="
. $_GET['passhash_md5'] // this seems to be correct to me too
);
header($header);
}
コードに間違いがありますか?
私がSESSIONハンドラを使用する場合、私は$ _GETで自分のデータをサニタイズする必要はありません。うーん、私はそれを勉強する必要があります。 –