Hi there,
I want to destroy a session and ensure that I've eradicated any values being stored, then immediately start a new session:
the values:
$SESSION['value1']
$SESSION['value2']
session_destroy();
?
session_start();
in between destroy & start, do I need to clear the two values? If so, do I use
unset $_SESSION['value1']
or
unset $value1
as the php manual is a little confusing about this.
thanks very much for your time.
thanks,
json