こんにちは、値を抽出しようとしている次の URL があります。
http://xxxxxx.com/Confirm.aspx?vCode=123xyzd33eed&emailAddress=xxx@hotmail.com&
vCode と emailAddress の値を抽出して、適切なフィールドに表示しようとしています。
<input type="text" id="Text1" name="validationCode" value="<? echo htmlspecialchars($_GET["validationCode"]); ?>" placeholder="validationCode"/>
<input type="text" id="emailAddress" name="emailAddress" value="<? echo htmlspecialchars($_GET["emailAddress"]); ?>" placeholder="Email Address" />
上記のコードは、vCode と emailAddress の値を表示しません。それを修正する方法はありますか?ありがとう