I need to use a session that set in system call after performing mass data generation. Is it possible to call a session that sets in system call? Am using the following code:
system_call.php
session_start();
$_SESSION['global_notification']= 'Message';
front_end.php
session_start();
echo $_SESSION['global_notification'];