↧
Backup Database Using PHP
It is always good practice to take a regular backup of your database. Following code will help you to take whole database backup or single table backup. The code below will display all tables in your...
View ArticlePagination function for PHP
Pagination can get complicated depending on the size of records in the database, especially when you want to group number of links, display next/previous links etc. In this tutorial we’ll focus on...
View ArticleWhich encryption should I use to encrypt my password in php other than md5
md5 is the commonly used algorithm by most of the novice programmers. md5 algorithm is used to encrypt password and there is no decryption algorithm to decrypt it, most of the programmers think it is...
View Article