Earlier, I have shared tutorial about Simple PHP Login System Using MySQL and jQuery AJAX. This tutorial is second part of user module to create user registration using php and MySQL with Google captcha. I am using Bootstrap to create registration form and jQuery validation plugin for form validation.We will do google PHP captcha validation […]
Implode and Explode in PHP 7
This tutorial help to understand implode and explode differences underneath of php 7.The implode is used to join elements of an array with a string.The explode is used to split the string data into an array using delimiter string. What’s Difference between explode() and implode() The explode() function is used to breaks a string into […]
Parameterize Event and Listener in Laravel 7
This laravel 7 tutorial help to create parameterized event and listener, We can pass data to listener using event constructor, I will also create parameter for handler function.we will pass parameter which has listener method name that ll handle event. Sometimes we need to call listener method based on parameter, We ll create method name […]
Create an EVENT and Listener in Laravel 7
This laravel 7 tutorial help to understand event and listeners.The laravel event allows to subscribe and listen for various events that occur in your application.
How to Configure supervisord on Linux for Laravel Jobs Queue
This quick tutorial help to configure Supervisor with Lumen application on Linux.I have already shared tutorial about Queue and Run Jobs using worker in Lumen/Laravel Framework. Supervisor is a process monitor for the Linux operating system, which will automatically restart your jobs queue using queue:listen or queue:work commands if they fail. You can install Supervisor […]