Hello,
I was wondering how to empty a data session when clicking on a link ?
I was wondering how to empty a data session when clicking on a link ?
<?php
$session =& JFactory::getSession();
// change the next two lines if you have specified a session key or namespace
$session_key = $form->form_details->name;
$session_ns = 'default';
$session->clear('_chronoform_data_'.$session_key, $session_ns);
?>