i have two session scripts going on the same server... in my ini file the session.cookie_domain is set to nothing
as such both scripts are talking to each other and i dont want that
so... on the fly ive spec'd this:
script 1:
ini_set("session.cookie_domain","/cart/");
script 2:
ini_set("session.cookie_domain","/cart_2/");
now neither will keep sessions
is this possible?