I have code like the following:
$groupName = $_SESSION['groupName'];
$category = $_SESSION['category'];
$Public = $_SESSION['Public'];
Could at some point in the code destroy those specific sections without destroying other sessions. So like if I wanted to destroy $Public and $category but keep $grouName, how would I do that?? Would I do someting like:
session_destroy($category, $Public)
Thanks for the help.