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.
[...]
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 [...]
In this tutorial how to explain Import CSV File into MongoDB using Python.While developing applications using Python, from time to time we need to insert CSV data into the MongoDB database. Inserting CSV data to MongoDB is very easy in Python. We just need to read the CSV file and then connect to MongoDB to insert data. So we will use module [...]
Login with Facebook is a quick and powerful way to integrate registration and login systems on the web application. Facebook is the most popular social network and most of the users have a Facebook account. In this tutorial, you will learn how to build a Login with Facebook using PHP SDK. You can also download the source code of the live exam [...]
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 [...]