|
i inputed ur code at top of this and still it gives me the same results can u checck what is wrong with this:
$f=fopen($votes, "w");
for ($i=0; $i<=count($d)-1; $i++)
{
if ($i == $votes)
{
$onevote[$i]+=1;
$optiontwo[$i]+=1;
$optionthree[$i]+=1;
$optionfour[$i]+=1;
}
fputs($f, "$onevote[$i]|");
//fputs($f, "$optiontwo[$i]|");
// fputs($f, "$optionthree[$i]|");
//fputs($f, "$optionfour[$i]|");
}
fclose($f);
// setcookie("survey", "voted");
}
}
|