SBS2003+IIS+PHP5.2.5をインストールして
例題を実行したのですがWarningが出てしまいます
例題
cookie.php
<html>
<head>
<title>クッキーでデータを記録する</title>
</head>
<body>
<form method="POST" action="cookie_rec.php">
E-Mailアドレス:
<input type="text" name="email" size="30" maxlength="50"
value="<?php print($_COOKIE['email']); ?>" />
<input type="submit" value="送信" />
</form>
</body>
</html>
cokie_rec.php
<html>
<head>
<title>クッキーでデータを記録する</title>
</head>
<body>
<?php setcookie("email",$_POST['email'],time()+(60*60*24*90)); ?>
クッキー"email"を保存しました。
</body>
</html>
実行しますと
Warning: Cannot modify header information - headers already sent by (output started at cookie_rec.php:3) in cookie_rec.php on line 3
となってしまいます。
同じPHPをXP+apache2+php5.2では動きました。
原因がわかりません。