hello,
i developed an online shop where the user can cancel the purchase. there i want to delete the session with:
session_destroy();
however this runs well because the session temp file was deleted. the problem is that the cookie "PHPSESSID" wasn´t delete. in this reason the user will get the same session_id() if he is shopping again.
the session cookie will only delete after closing the browser window.
what can i do to get a new session_id() after session_destroy()????
thx