setcookie

Samy-Deluxe

Erfahrenes Mitglied
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
<?PHP

if(isset($Submit)){
setcookie("Name", $_GET['user'], time()+60);
}?></head>

<body>
<?PHP
if(isset($_COOKIE['name'])){
echo $_COOKIE['name'];
}
else{
?>
<form id="form1" name="form1" method="post" action="">
<table width="100%" border="0" cellspacing="2" cellpadding="2">
  <tr>
    <td>username:</td>
    <td><input type="text" name="user" /></td>
  </tr>
  <tr>
    <td>Password</td>
    <td><input name="pw" type="password" /></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>
      <input type="submit" name="Submit" value="Senden" />
    
    </td>
  </tr>
</table></form><? } ?>
</body>
</html>


Ich probiere grade wie man cookies setzt und auslesen tut.
Doch
Code:
Warning: Cannot modify header information - headers already sent by (output started at /www/htdocs/w009cc48/testarea/login.php:6) in /www/htdocs/w009cc48/testarea/login.php on line 9

Warum, weiß das einer?

ich habe hier schon nach gelesen und fehler nicht wirklich gefunden
 
Zurück