0

変数を含む URL があり、その変数でリダイレクト先のページを決定したいと考えています。Switch ステートメントで Meta-redirect を使用しようとしましたが、うまくいきません。私が間違っていることは何ですか?

<?php
setcookie("affiliate", $_GET['a'], time()+31536000);
?>

<!DOCTYPE html>

<html>
<body>

<?php
switch($_GET['p'])
{
case"h": 
echo "<meta http-equiv="refresh" content="1; url=website/">";
echo "redirecting in 1 second";
echo "if this page does not redirect <a href="website/">click here.</a>";
  break;

case"w":
echo "<meta http-equiv="refresh" content="1; url=website/watches.html">";
echo "redirecting in 1 second";
echo "if this page does not redirect <a href="website/watches.html">click here.</a>";
  break;

case"sf":
echo "<meta http-equiv="refresh" content="1; url=website/watches/solar-flare.html">";
echo "redirecting in 1 second";
echo "if this page does not redirect <a href="website/watches/solar-flare.html">click here.</a>";
  break;

default:
echo "incorrect page option";
}
?>

</body>
</html> 

ありがとう :)

クリス

4

2 に答える 2