Tabs Cookies
Is there a way to initiate or differentiate between cookies per tab in the same browser?
For example
Tab one has:
example.com/page1.php?value=1
which has:
PHP Code:
<?php
$write_it = $_GET['value'];
if (isset($write_it)) {
setcookie("Multiple_Tabs", $write_it, time()+3600);
?>
and then 2 additional tabs with the same address are opened in a users browser; does anyone know if there is (a)/are browser(s) that feature this, or how this could be accomplished without changing the content or name of the cookie? Thanks.
Or is there a way on creating the cookie to have it know which tab it came from?
Last edited by bluewalrus; 01-14-2010 at 05:04 PM.
Corrections to my coding/thoughts welcome.
Bookmarks