This tutorial help to encrypt and decrypt a string using cryptojs and PHP. Cryptojs is a very popular library that is used to convert string data into encrypted text and vice versa.
How To Add, Edit & Delete Rows Dynamically Using JQuery
in this tutorial we will be discussed how to add and delete records dynamically to the table using jquery, Normally in project we give options to users to add multiple rows and submit into the database. Here, I am creating functionality to add and delete static rows. We do not show PHP code to store […]
How To Generate QR code in laravel 8
In this article, we’ll look at an example of a laravel 8 QR code generator. we’ll use the simplesoftwareio/simple-qrcode package to generate QR codes. That helps to generate qr code. You may generate a simple QR code, text QR code, or image QR code in Laravel 8.
PHP isset() vs empty() vs is_null()
in this tutorial, I’ll show you how to check if an element has been defined and see if it is empty or null. This php tutorial help to understand difference between PHP isset() vs empty() vs is_null().
Remove Duplicates From Multidimensional Array
In this post, I am going to explain how to remove duplicate values from multidimensional array in PHP. I use array_unique() to get unique but its work on single-dimensional array, not able to work on multidimensional arrays. You can remove duplicates from the multidimensional array by value in PHP.