create PHP Rest API
Here is example of how create a rest API in PHP. Employee table Schema Create a ‘test’ MySQL database, if you have already any database then also run below sql into that database SQL query window. CREATE TABLE IF NOT EXISTS `employee` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT ‘primary key’, `employee_name` varchar(255) NOT NULL COMMENT ’employee […]