cookies nich

schneeWITCHen

Mitglied
[edit]wieso darf man denn hier das wort f.unze.n nich schreiben? [/edit]

meine cookies funktionieren nachm serverwechsel nichmehr... :?:


PHP:
if ($remember_me) {

$cookie_life = time() + 31536000; // Life of one year

setcookie("lostname", "$name", $cookie_life, '/', 'lost.chaosworks.org');
setcookie("lostmail", "$email", $cookie_life, '/', 'lost.chaosworks.org');
setcookie("losturl", "$url", $cookie_life, '/', 'lost.chaosworks.org');
}





das formular
PHP:
<form method="post" action="process.php">

<tr><td colspan='2'>
leave a comment<br />
<input type="hidden" name="entry" value="<?=$id?>">
<input type="hidden" name="timestamp" value="<?=$timestamp?>">
</td></tr>

<tr>
<td align="right" valign="top">name: </td>
<td>
<input type="text" name="name" size="50" value="<?php if (isset($_COOKIE['lostname'])) { print $_COOKIE['lostname']; } ?>">
</td></tr>

<tr>
<td align="right" valign="top">email: </td>
<td>
<input type="text" name="email" size="50" value="<?php if (isset($_COOKIE['lostmail'])) { print $_COOKIE['lostmail']; } ?>"><br>
</td></tr>

<tr>
<td align="right" valign="top">url: </td>
<td>
<input type="text" name="url" size="50" value="<?php if (isset($_COOKIE['losturl'])) { print $_COOKIE['losturl']; } ?>"><br>
</td></tr>

<tr>
<td align="right" valign="top">comment: </td>
<td>
<textarea cols="50" rows="5" name="comment"></textarea><br>
<input type="submit" name="submit_comment" value="comment">
<input type="checkbox" name="remember_me" checked /> Remember me?
</td></tr>

</form></table>
 
Zuletzt bearbeitet:
wieso darf man denn hier das wort f.unze.n nich schreiben?
Weil „f?u?n?z?e?n“ k?e?i?n Wort ist. (Genau so wie „nich“, „nachm“ und „nichmehr“.)

Zu deinem Anliegen: Ist das Skript denn immer noch unter dem Host-Namen „lost.chaosworks.org“ erreichbar?
 
Cookies werden zusammen mit dem Host-Namen gespeichert und nur auf dem Host befindliche Skripte können die Cookie-Daten wieder abrufen.
 
Zurück