Skip to content

Instantly share code, notes, and snippets.

@yasaryousuf
Created April 16, 2019 07:01
Show Gist options
  • Save yasaryousuf/51589904b898a54e03176c034d1709c7 to your computer and use it in GitHub Desktop.
Save yasaryousuf/51589904b898a54e03176c034d1709c7 to your computer and use it in GitHub Desktop.
<?php if (isset($_SESSION['message'])) : ?>
<div class="alert alert-<?= $_SESSION['type'] ?>">
<?= $_SESSION['message'] ?>
</div>
<?php endif; unset($_SESSION['message']); unset($_SESSION['type']); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment