Ver Mensaje Individual
  #5 (permalink)  
Antiguo 26/09/2006, 14:40
kelev
 
Fecha de Ingreso: junio-2006
Mensajes: 62
Antigüedad: 18 años, 8 meses
Puntos: 0
cookies1.php

Cita:

<?php
$valor = 'algo desde algun lugar';

setcookie("CookieDePrueba", $valor);

?>

<html>
<head>
</head>
<body>

<a href=cookies2.php> a ver... </a>

</body>
</html>
cookies2.php

Cita:

<html>
<head>
</head>
<body>
<?php
echo $_COOKIE["CookieDePrueba"];
?>
</body>
</html>
entre al manual que me pasaste, lei y copie los ejemplos para estar seguro que funcione... y no funciona :S

no se que pasa... alguna sujerencia?