Category Archives: MySQL


December 13, 2024 10:03 am

Mysql Stored Procedure in PHP


Mysql Stored Procedure in PHP
Are you making stored procedures if not please have a look at this.Stored procedures can help to improve web applications and reduce database requests traffic. This post explains you how to make procedures and decrease database requests.

[ Read More ]


December 12, 2024 11:22 pm

jQuery Fullcalendar Integration with Bootstrap, PHP & MySQL


jQuery Fullcalendar Integration with Bootstrap, PHP & MySQL
Recently I have used this plugin in an application and faced some issues to integrate it with bootstrap so I don't want my readers to waste time in integration in this tutorial you will get a fullcalendar working with bootstrap, PHP & MySQL. We are doing some basic operations like add event, edit event and delete event.

[ Read More ]


December 12, 2024 11:19 pm

Create Like & Unlike System in PHP MySQL and jQuery [Improved]


Create Like & Unlike System in PHP MySQL and jQuery [Improved]
We have created a like and unlike script on our readers request we received many users feedback they face problems in counter etc. Now I have fixed all bugs and created its improved version with multiple like unlike on single page and for products and improve some JavaScript and CSS so I hope you like it.

[ Read More ]


December 12, 2024 10:06 pm

How to login with LinkedIn oAuth2 in PHP and MySQL


How to login with LinkedIn oAuth2 in PHP and MySQL
LinkedIn is a business oriented social networking platform and used for professional networking. We create a tutorial on login with LinkedIn oAuth which is not working properly and difficult to configure for developers, after receiving many complains from readers am writing this new tutorial on LinkedIn oAuth2 its super easy to integrate with your website in few simple steps.

[ Read More ]


December 12, 2024 9:37 pm

Stop using PHP MySQL extension and start using MySQLi or PDO


Stop using PHP MySQL extension and start using MySQLi or PDO
Nowadays, PHP have several database extensions. In the past, there was only the MySQL extension. Later, MySQLi extension appeared. It enabled developers to write more neat and maintainable code. It had also the power of object-oriented and it was more secure and strongly recommended in its days. Now, we have PDO that literally has it all.

[ Read More ]


December 12, 2024 8:18 pm

Stored procedures in PHP and MySQL


Stored procedures in PHP and MySQL
Today, a majority of databases support stored procedures. A stored procedure is simply a set of SQL instructions that perform a particular task which is stored in the database to help associated programming languages and database engine retrieve it anytime. Stored procedures are a great way to increase the performance and reduce network traffic. They usually accept input parameters and can be used by different clients over the network.

[ Read More ]


December 12, 2024 5:50 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 ]