重複の可能性:
PHP の「Header Already Sent」エラー
ユーザーが IGN (ゲーム内の名前) を指定し、それを Cookie に保存するようにコードを作成しました。しかし、それはうまくいきません。
<form action="index.php" method="GET">
Minecraft IGN:
<input type="text" name="ign">
<input type="submit" value="Submit">
</form>
<?PHP
error_reporting(0);
$player = $_GET["ign"];
$exp = time()+86400;
setcookie("ign", $player, $exp, "/", "", "");
if (isset($player)) {
echo "Your Minecraft Ingame Name Was Set To $player!";
}
?>
<br>
<?PHP
if (isset($player)) {
echo '<p>Click <a href="http://gophobia.com/phpsend/">Here</a> To Redeem Ur Prizes :3</p>';
}
echo '<br />';
print_r($_COOKIE);
?>