i set cookies to expire at session end by just leaving time out. this works fine if i close the entire browser. but if i just close the tab w my script on it it doesn't expire cookies. I really would like for them to expire even in tabbed browser. any ideas? here's my cookie page:
<?php
// Write the current month and year into cookies and return back to index.php
$month=$_GET['m'];
$mon=$_GET['mon'];
$year=$_GET['y'];
$ti= $_GET['ti'];
setcookie("month", $month);
setcookie("mon", $mon);
setcookie("year", $year);
setcookie("ti", $ti);
header ("location: index.php");
?>