Category Archives: About PHP


March 1, 2024 5:02 am

How to post into a Facebook Page with PHP using Graph API


How to post into a Facebook Page with PHP using Graph API
We have published one article on How to publish status on Facebook with Graph API which post status on user's wall when user write , now I am going to show how to post status on pages to post status on Facebook page we use Facebook Graph API in PHP to perform this task.

[ Read More ]


February 24, 2024 5:01 am

How to use PDO database connection in PHP


How to use PDO database connection in PHP
As we all know that in PHP 5.5 MySQL is deprecated and we have to move new extensions like MyQLi or PDO (PHP Data Objects) for database integration, we have already publish an article on How to use MySQLi_connect PHP and this article will explain you how to connect with MySQL database using PDO connection and we explain very few things in this tutorial like database connection, insert, delete, update and select queries with prepare statement, multiple insert and error handling.

[ Read More ]


February 23, 2024 5:01 am

How to Hashing Password in PHP 5.5 with Password Hashing API


How to Hashing Password in PHP 5.5 with Password Hashing API
This tutorial show you how to hashing passwords in PHP 5.5 with hashing API. There is a large number of web developers using old and less secure algorithm like MD5 and SHA1 encryption etc but these are assumed as open strings and not called encrypted. In this new hashing API it uses bcrypt (its a  key derivation function for passwords). In this article we are going to explore PHP's new hashing API.

[ Read More ]


February 22, 2024 5:02 am

How to create CAPTCHA image verification in PHP and jQuery


How to create CAPTCHA image verification in PHP and jQuery
Captcha is the simple verification on your web forms that the user is a human or a computer. Its used to prevent spammers on your website. If you use captcha on your web forms its hard for spam bots to submit data to web site. The reason to write this tutorial is to demonstrate how to create captcha image in your application using PHP and jQuery.

[ Read More ]


February 21, 2024 5:02 am

How to Upload multiple images jQuery Ajax using PHP


How to Upload multiple images jQuery Ajax using PHP
I have received many requests from my readers to on how to upload multiple images in jQuery and PHP, so this is the article which I have wrote and explain jQuery and PHP to upload multiple images at once. You can use this as a reference for your web projects, specially focused on newbies to understand the procedures of images uploading.

[ Read More ]


February 19, 2024 5:02 am

How to Convert HTML to PDF in PHP with fpdf


How to Convert HTML to PDF in PHP with fpdf
HTML to PDF conversion is always a problem for PHP Programmers and all the time they search for suitable solutions so after reviewing this article you will not take more than 10 minutes to configure HTML to PDF, I have used a library fpdf open source and very useful library for developers here is a simple tutorial on how to convert How to Convert HTML to PDF with fpdf.

[ Read More ]


February 17, 2024 5:06 am

How to create Price Range Slider in jQuery & PHP with MySQL


How to create Price Range Slider in jQuery & PHP with MySQL
I have received many requests from my readers to create a price range slider, this article going to solve there problems so basically I used jQuery UI to perform this tutorial base which is jQuery and created a PHP and MySQL settings for ease of PHP Programmers so let see how it works and how to configure it in your websites. Mostly Developers use this slider in eCommerce sites where people can search products with price range.

[ Read More ]