How to Protect CodeIgniter Forms with CSRF Tokens
Edit Config.php file $config[‘csrf_protection’] = FALSE; $config[‘csrf_token_name’] = ‘csrf_test_name’; $config[‘csrf_cookie_name’] = ‘csrf_cookie_name’; $config[‘csrf_expire’] = 7200; $config[‘csrf_regenerate’] = TRUE; $config[‘csrf_exclude_uris’] = array(); Replace the above code with : $config[‘csrf_protection’] = TRUE; $config[‘csrf_token_name’] = ‘csrf_test_name’; $config[‘csrf_cookie_name’] = ‘csrf_cookie_name’; $config[‘csrf_expire’] = 7200; $config[‘csrf_regenerate’] = TRUE; $config[‘csrf_exclude_uris’] = array(); <form action=” ” method=” “> </form> Replace the form […]
How To Add Ai Chatbot in Web Application Using Php ?
Add ai chatbot in your web application What is ai chatbot ? First of all,ai chatbot is automated program that simulates and processes human conversation for example. written and spoken,ai chatbot gives humans the opportunity to talk to a digital device, to have a conversation as if they were talking to a real person. ai […]
Live Data Search using Ajax jquery in mysql php.
Create Database create database : testing create table : tbl_customer CREATE TABLE IF NOT EXISTS `tbl_customer` ( `CustomerID` int(11) NOT NULL AUTO_INCREMENT, `CustomerName` varchar(250) NOT NULL, `Address` text NOT NULL, `City` varchar(250) NOT NULL, `PostalCode` varchar(30) NOT NULL, `Country` varchar(100) NOT NULL, PRIMARY KEY (`CustomerID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14; Insert Records in database: INSERT […]
How to recover database from xammp folder
1- Rename the folder mysql/data to mysql/data_old (you can use any name) Rename the folder data to old_data in mysql folder, You can use Any name. Path: xammp/mysqli/data 2- Create a new folder mysql/data Path: xammp/mysqli/data 3- Copy the content that resides in mysql/backup to the new mysql/data folder 4- Copy all your database folders […]