Simple login Page in PHP with MySQL Database; In this tutorial, you will learn how to create simple login form in PHP, MySQL, bootstrap, session and server-side validation. And also, this tutorial will show how to create a login system
Category: PHP
Registration and Login Form in PHP with MySQL Validation Source Code
Simple user, student or employee login and registration system in PHP and MySQL Boostrap with validation. In this tutorial, you will learn how to create a simple user/student login and registration application in PHP and MySQL. This tutorial will explain
Read More Registration and Login Form in PHP with MySQL Validation Source Code
Codeigniter, Laravel, WordPress PHP Fatal error Allowed memory size of bytes exhausted
Through this tutorial, you will learn how to fix PHP: fatal error: allowed memory size of 8388608,16777216, 33554432, 67108864, 134217728, 268435456, 536870912, 1073741824 bytes exhausted PHP, laravel, codeIgniter, WordPress in linux ubuntu, windows, mac. How To Fix PHP Fatal error: Allowed memory
Read More Codeigniter, Laravel, WordPress PHP Fatal error Allowed memory size of bytes exhausted
How to Remove First and Last Element from Array in PHP
If you have an array and you want to remove or delete the first element and last element from that array. So if you want to remove the first element then you have to use php array_shift() and if you
Read More How to Remove First and Last Element from Array in PHP
PHP Remove Value from Array if Exists
If there is a value in an array. And you have to remove it from an array. So you can remove the value from the array with the help of array_search(), unset(), foreach(), and is_array(). In this tutorial, you will
PHP Calculate Difference Between Two Dates in Hours, Minutes and Seconds
There are many date functions and methods in PHP that you can use to get the time difference between two or more dates. Sometimes, you need to calculate or find the time difference between two dates PHP. If you know
Read More PHP Calculate Difference Between Two Dates in Hours, Minutes and Seconds
Find Number of Months & Days Between Two Dates in PHP
Sometimes you need to find out the number of months and number of days between two or more dates. There are many functions or methods in PHP for this. Using these, you can find/get/calculate them between 2 or more dates.
Read More Find Number of Months & Days Between Two Dates in PHP
PHP Find Min Value From Multidimensional Array
If you are working with array of multidimensional. And you have to find the lowest/minimum/smallest value in multidimensional array by its key and value. Then you are looking for the right tutorial, in this tutorial you will learn how to
PHP Calculate Difference Between Two Dates In Years, Months, And Days
When you are working with dates in PHP. And you need to calculate the difference between two dates in years, months and days. Or you have to find the total number of months and a total number of days between
Read More PHP Calculate Difference Between Two Dates In Years, Months, And Days
How To Remove Specific Element From Array in PHP
Remove specific elements from array in PHP. In this tutorial, you will learn how to remove or delete specific elements from php array by key, value, and index in PHP. How to Delete Specific Element From Array By Key, Value