Bu kılavuza göre: http://us2.php.net/setcookie Ben her şeyden önce çerez ayarlamak zorunda.
İşte benim cookie kodu:
if (isset($_COOKIE['watched_ads'])){
$expir = time()+1728000; //20 days
$ad_arr = unserialize($_COOKIE['watched_ads']);
$arr_elem = count($ad_arr);
if (in_array($ad_id, $ad_arr) == FALSE){
if ($arr_elem>10){
array_shift($ad_arr);
}
$ad_arr[]=$ad_id;
setcookie('watched_ads', serialize($ad_arr), $expir, '/');
}
}
else {
$expir = time()+1728000; //20 days
$ad_arr[] = $ad_id;
setcookie('watched_ads', serialize($ad_arr), $expir, '/');
}
Gördüğünüz gibi ben çerez ayarı değişkenleri kullanıyorum.
The variables comes from a mysql_query and I have to do the query first. But then, if I do, I will get an error message:
Cannot modify header information - headers already sent by ...
Hata yukarıda çerez ayarlamak hattına puan.
Ben ne yapmalıyım?
UPDATE:
Ben SetCookie bölümü önce bunu:
$ad_id=$_GET['ad_id'];
$query2 = "SELECT * FROM classified WHERE classified.ad_id = '$ad_id'";
$results2 = mysql_query($query2) or die(mysql_error());
$row2 = mysql_fetch_array($results2);
$cat = $row2['category'];
$action=$row2['action'];
$sql_table='';
$num_rows = mysql_num_rows($query_results);
if ($num_rows != 0){
HERE COMES THE SETCOOKIE PART