About Other methods
Fegg has other methods that you may use in your application code and display.
Config
- Application::loadConfig
- Loading config file
Ticket
Ticket is useful in securing your own form processing. Setting ticket will return a hashed random string using md5 function and is going to be a part of your session. This ticket can also be applied as Hidden input on the form. That means this ticket exists both on the server and client side and we can match them once the form is submitted and validate if they are the same.
- Application::setTicket
- Set ticket data and start ticket session
- Application::useTicket
- Use ticket once and destroy ticket session