Category Archives: MySQL


April 15, 2015 3:43 pm

How to Search in MySQL using full-text indexing in PHP


How to Search in MySQL using full-text indexing in PHP
Hello friends after a long time today I am going to write a post on few of my readers request on How to quick Search in MySQL using full-text indexing in PHP. Many developers make a big mistake during searching from MySQL use wildcard queries "LIKE %string%" which is a very slow query to search records so today we are going to learn full-text indexing search and its hundreds or thousands of times fast then wildcard wildcard queries.

[ Read More ]


June 30, 2014 10:51 am

PHP CRUD with Twitter Bootstrap 3 Part – 2/2


PHP CRUD with Twitter Bootstrap 3 Part – 2/2
PHP CRUD This is the 2nd part of CRUD tutorial in this part we will cover "Read", "Update" and "Delete"options in our previously created grid in tutorial part 1. I will give you its complete demo and a source code to download free so you can try that in your own websites.

[ Read More ]


June 25, 2014 5:12 pm

PHP CRUD with Twitter Bootstrap 3 Part – 1/2


PHP CRUD with Twitter Bootstrap 3 Part - 1/2
PHP CRUD I have received many requests from my readers to create some article on CRUD (stand for Create/Read/Update/Delete) grid its a very common task in web development and we always implement it in our applications very frequently. The purpose of creating CRUD grid is to give an option to your user to Create/Read/Update/Delete data. Your data is stored in database and here we are using MySQL database. To display grid we use bootstrap framework.

[ Read More ]