PHP Classes

File: themes/classic/tpl/inc/success_msg.inc.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Spooky   themes/classic/tpl/inc/success_msg.inc.php   Download  
File: themes/classic/tpl/inc/success_msg.inc.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Spooky
System to manage content extensible using modules
Author: By
Last change:
Date: Yesterday
Size: 264 bytes
 

Contents

Class file image Download
<?php defined('H2O') or exit('Access denied');

$oSess = new H2O\Session;
if (
$oSess->exists('H2OSuccessMsg'))
{
    echo
'<div class="center alert-message success">' . $oSess->get('H2OSuccessMsg') . '</div>';
   
$oSess->remove('H2OSuccessMsg');
}
unset(
$oSess);