così va bene (?):
chat.php
Codice PHP:
<?
session_start();
$nick = $_SESSION['nick'];
?>
<? include("session.php"); ?>
<html>
<head>
<title>ChatexT</title>
</head>
<body>
<?PHP
if ($_COOKIE["nick"] == "OK")
{
?>
<?
if(!$_COOKIE["nick"]) {
?>
<input type="text" name="nick" value="Tuo nome" />
<?}else{?>
<input type="text" name="nick" value="<?=$_COOKIE["nick"]; ?>" />
<?}?>
ECCETERA...
session.php
Codice PHP:
<?
if ($_SESSION['nick'] != "ok") {
header("Location: index.php");
}
?>
non ho capito tanto bene sta cosa del valore che torna OK e non il nome