Utilities

Session #

Session is a class to manage session. You can use Session in anywhere of your application.

// Put use this class on top of php file
use koolreport\dashboard\Session;

//Set value
Session::anyValue("KoolReport is good");

//Get value
echo Session::anyValue(); // "KoolReport is good"

Cookie is a class to handle cookie. You can save and retrieve anything from cookie. The way to use it is very simple

// Put use this class on top of php file
use koolreport\dashboard\Cookie;


//Set value
Cookie::anyValue("Dashboard Framework is awesome");

//Get value
echo Cookie::anyValue(); // "Dashboard Framework is awesome"

Get started with KoolReport

KoolReport will help you to construct good php data report by gathering your data from multiple sources, transforming them into valuable insights, and finally visualizing them in stunning charts and graphs.