You are going to need to use a dynamic scripting language like javascript. Essentially set the visibility of the Div when the user clicks a button.
You will also need to add an id to the div:
echo '<div class="success" id="success">'.$_SESSION['msg']['reg-success'].'</div>';
Essentially add a link like so:
echo "<a href=\"javascript:hide(document.getElementById('success'))\">Hide box</a>";
Then add the script:
echo '<script type="text/javascript">
function hide(a){
a.style.display="none"
}
</script>';
That should do it... The end results are something like this:
if($_SESSION['msg']['reg-success']) {
echo '<div class="success" id="success">'.$_SESSION['msg']['reg-success'];
echo "<a href=\"javascript:hide(document.getElementById('success'))\">Hide box</a>";
echo '</div>';
unset($_SESSION['msg']['reg-success']);
}
echo '<script type="text/javascript">
function hide(a){
a.style.display="none"
}
</script>';