PHP encryption is important to the privacy and safety of your web data. The API provides method password_hash() to generate a hash from the string and method password_verify() to verify that the given hash matches the given password. In this tutorial, we will learn How to Encrypt and Decrypt Passwords in PHP.
[...]
Category: PHP
User authentication is a standard security mechanism, It allows identified users to access any digital application or website. In this tutorial, we will learn you how to build a simple auth system with login and signup functionalities using MySQL.
Also Read : PHP CRUD Operations using jQuery, Ajax and MySQL
[...]
Pagination is the process of separating print content into discrete pages. Pagination in web development is a mechanism or process to break down digital content into different web pages. We divide records into small parts and send them back in response. Paginations help to reduce unnecessary load on the server because the server returns some [...]
Newsletter or Email Subscription is a commonly used functionality in the web applications. It is used in web application to allow users to subscribe with their email and get the updates daily, weekly, and monthly via email.
So, In this tutorial we will show you how to Build Newsletter System with PHP, MySQL, and jQuery. You can use this ex [...]
Sending email functionality is very useful for the dynamic web application. In this tutorial, we will explain to you how to sending an email with multiple attachments using phpmailer library. We will be using the PHPMailer. The attachment files are chosen and attached to the email via an HTML form. You can also download source code of the liv [...]
REST stands for Representational State Transfer, it is a software architectural style for handling information over the internet.
API stands for Application Programming Interface, it is a group of functions and processes that allow the creation of applications that access the features or data of an operating system, application, or other [...]
CRUD is an acronym that stands for Create, Read, Update, and Delete. Add, Read, Update and Delete functionality is commonly used in the data management section of a web application. In this tutorial, you will learn how to build a PHP CRUD Operations using jQuery, Ajax, and MySQL without refresh page. You can also download source code of the l [...]
TinyMCE is the most advanced WYSIWYG HTML editor designed to simplify website content creation. It has the ability to convert HTML textarea fields or other HTML elements to editor instances. TinyMCE is designed to easily integrate with JavaScript libraries.
In this tutorial, we will explain you how to use TinyMCE editor to replace textarea t [...]
Captcha code is a combination of some readable text with some distorted shapes to be read only by human being to confirm that the user is not a bot.The Google reCAPTCHA protects your application from spam with the better user experience.In this tutorial, we have share how to integrate the Google reCAPTCHA in PHP contact form.
the reCAPTCH [...]
In this tutorial, We have share how to implement PayKun Payment Gateway Integration in PHP. PayKun payment gateway is a merchant service that authorizes credit/debit card or direct payments for e-businesses, online retailers and offline businesses. In brief Payment gateway fulfills the essential needs in the e-commerce transaction process & a [...]