ok theres my probleme
i have a survey in a template file this survey was include in this template like this
<?php
if (isset($HTTP_COOKIE_VARS['PnorthSurvey'])){
$cookie=1;
}else{
$cookie=0;
}
if ($cookie==0){
include ('survey.php');
}else{
include ('surveyresult.php');
}
?>
and i have a submit buton in the survey.php
how can i set the cookie and reload the page
note this template was use for all page in the site so the reload need to be on the good page
thx i realy need help