Skip to content

Releases: mhnobakht/Semej

1.1.1

05 Oct 18:21
Compare
Choose a tag to compare

sweet alert

you can display message using sweet alert js

session flag

add session HttpOnly/Secure flag

1.0

09 Aug 14:06
Compare
Choose a tag to compare
1.0

Semej (Session Message Manager)

show alert messages using easily using Semej

Installation

just include Semej.php file in to your document and Enjoy!

include_once "dist/Semej.php";

Usage

Set arguments (Status, Title, Body)

Semej::set('false', 'Error 404', 'File Not Found!');

print status

Semej::status();

print title

Semej::title();

print Body

Semej::message();

print complete alert

this method require to bootstrap CDN included!
with this method you can show the full alert message in your document.
in the method, valid status value is on of These:
info primary danger dark warning success secondary light

Semej::show('danger', 'error', 'file not found!');