Google News
logo
CodeIgniter - Interview Questions
How can you enable CSRF?
You can enable protection by editing config.php file and setting it to
 
To enable CSRF make the following statement TRUE from FALSE in application/config/config.php file.
$config['csrf_protection'] = TRUE;
Advertisement