le 23/05/2004 à 17:34
os2
salut
j'ai utilisé et modifié un sondage en php trouvé sur le web
j'ai un fichier index.php qui inclus mon fichier me permettant de me connecter à la bd (bd.php)
j'ai une fonction sondage
dans mon fichier vote.php
j'ai
à cette ligne:
if ($_COOKIE['pac-cookie'] != 1)
j'obtiens l'erreur
Undefined index: pac-cookie in bd.php
une idée?
j'ai utilisé et modifié un sondage en php trouvé sur le web
j'ai un fichier index.php qui inclus mon fichier me permettant de me connecter à la bd (bd.php)
j'ai une fonction sondage
(Le code posté par ce membre étant trop long, il a été automatiquement inséré dans le wall. Pour le voir, veuiller clicker sur [lien=http://www.lephpfacile.com/wall/lire_wall.php?wall=1420]ce lien[/lien])
dans mon fichier vote.php
j'ai
<?php
setcookie('pac-cookie','1',time()+24*3600);
include ("bd.php");
connectionbd();
if ( isset($_POST['choix']) )
{
$str_requete = 'UPDATE `tblvote` SET votant=votant+1 WHERE id='.$choix;
$result_vote = mysql_query ($str_requete);
}
?><html>
<head>
<title></title>
</head>
<body>
<h1>SONDAGE</h1>
<p><a href="index.php">Voir les résultats</a></p>
</body>
</html><?php exit(); ?>
à cette ligne:
if ($_COOKIE['pac-cookie'] != 1)
j'obtiens l'erreur
Undefined index: pac-cookie in bd.php
une idée?