This tutorial will explain how to save objects or arrays into the cache using PHP APC Cache, here I will show you, How you can use APC Cache in PHP. The APC is supported till the PHP 5.4 version after that you need to use APCu, I have shared a tutorial How To install and […]
Php
How to install APC/APCu cache on WAMP and XAMPP
In this tutorial, I will demonstrate How to install the PHP APC and APCu cache module on your PHP environment (WAMP/XAMPP). First, we will ensure about our version of the APC cache which is based on the compiler version. We will learn how to install PHP APC and APCu Cache on WAMP and XAMPP server […]
PHP 7 Operators with Example
This tutorial will describe PHP 7 operators with example. The Operators help to perform operations on variables and values. There are some new operators introduced into php 7, like the null coalescing operator (??), spaceship operator(<=>).
How to Solve “Headers already sent” error in PHP
This Warning is shown by PHP when you use the header function to output headers or use the setcookie function to set cookies after any echo or content which is not inside the PHP tag.
Laravel Server Side Validation Example Using Resource Controller
This Laravel tutorial help to understand server-side validation using laravel 8/9. The PHP Laravel is the fastest growing PHP MVC Framework. We will apply the validation rule to upcoming requests using the validation class. I am extending my previous laravel tutorial Laravel 5.6 CRUD Tutorial Using Resource Controller.