PHP code example of falgunphp / notification

1. Go to this page and download the library: Download falgunphp/notification library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

falgunphp / notification example snippets



use Falgun\Http\Session;
use Falgun\Notification\Notification;

$notification = new Notification(new Session());

$notification->successNote('Oh Yeah');
$notification->warningNote('Oh ho');
$notification->errorNote('hold up');
// all 3 notification has been saved to $_SESSION

$notes = $notification->flashNotifications(); // to get notifications and remove them from session
// or
$notes = $notification->getNotifications(); // only get notifications and don't remove them

foreach($notes as $note){
	echo $note->getMessage(); // this is the message of the note
	echo $note->getType(); // success or warning or error
}