When I use these code
<?php
session_destroy();
?>
It clear all the sessions.
For my website, there's still others session. One which I want to keep is the IDUser session that is created when user login ( I built with SecurityAssist)
How can just clear the current cart session and make the new when user make another order?
Thanks