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 20, 2024 5:08 am

How to Hide your Email Address from spam bots


How to Hide your Email Address from spam bots
As a Web Developer you have to mention your email address in contact us pages or any pages and now days spam bots can easily copy that emails and send spam promotions on your email address, so in this article I am going to show you few settings in which no any spam bot can get your actual email and failed to spam your inbox. Have a look on blow explanation and integrate in your web applications.

[ 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 18, 2024 5:05 am

How to create Google Chrome App using JSON


How to create Google Chrome App using JSON
Google Chrome is no 1 browser in the world and today I am going to show you how to create Google chrome app using JSON an upload chrome store. I am creating this app using JSON and its very easy to create you can create it in minutes. To create chrome app you need a text editor like notepad or word pad and Google chrome browser.

[ Read More ]