1. Go to this page and download the library: Download volnix/flashy library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
volnix / flashy example snippets
useSymfony\Component\HttpFoundation\Request;
useVolnix\Flashy\FormData;
$request = Request::createFromGlobals();
$form_data = new FormData;
$form_data->set($request->query->all());
useVolnix\Flashy\Messages;
$messages = new Messages;
$messages->error('Oh no!');
$messages->info(['Message one', 'Message two']);
// print all the error messages:echo $messages->getFormatted('error');
// print all the messages:echo $messages->getFormatted();