ACC SHELL

Path : /srv/www/vhosts/centrumlb/administrace/
File Upload :
Current File : //srv/www/vhosts/centrumlb/administrace/messages.php

<div id="console" >
    <?php
    if (isset($_SESSION['message_ko'])) {

	foreach ($_SESSION['message_ko'] as $message) {
	    ?>
	    <div class="notification error png_bg">
		<a href="#" class="close"><img src="images/cross_grey_small.png" title="Close this notification" alt="close"></a>
		<div><?php echo $message; ?></div>
	    </div>
	    <?php
	}
	unset($_SESSION['message_ko']);
    }

    if (isset($_SESSION['message_ok'])) {
	foreach ($_SESSION['message_ok'] as $messageok) {
	    ?>
	    <div class="notification success png_bg">
		<a href="#" class="close"><img src="images/cross_grey_small.png" title="Close this notification" alt="close"></a>

		<div><?php echo $messageok; ?></div>
	    </div>
	    <?php
	}
	unset($_SESSION['message_ok']);
    }

    if (isset($_SESSION['message_info'])) {
	foreach ($_SESSION['message_info'] as $messageok) {
	    ?>
	    <div class="notification information png_bg">
		<a href="#" class="close"><img src="images/cross_grey_small.png" title="Close this notification" alt="close"></a>
		<div><?php echo $messageok; ?></div>
	    </div>

	    <?php
	}
	unset($_SESSION['message_info']);
    }
    ?>
</div>

ACC SHELL 2018