File "message.php"

Full path: /home/fsibplc/public_html/firstcash/message.php
File size: 439 B (439 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php
    if(isset($_SESSION['message']))
    {
        ?>
         
        <div class="alert alert-warning alert-dismissible fade show" role="alert">
              <?= $_SESSION['message']; ?>
            <button type="button" class="close" data-dismiss="alert" aria-label="Close">
                <span aria-hidden="true">&times;</span>
            </button>
        </div>
<?php 
    unset($_SESSION['message']);
    }
?>