1. If you have your parameter attached to the URL after the question mark like http://www.yoursite.com/someRoute?key=value Your route for this controller will look something like this Route::get('/someRoute', [UserController::class, 'controllerMethod']); You can get the value of this …
Category: PHP
There are quite a lot of posts online that guides on how to install Xdebug and then configure it with your PHP Editor. I found many of the tutorials confusing and was not able to accomplish …
I spent a lot of time of figuring out how to send mails through PHP mail() function on my new installation of Yosemite. Things were weird because I was able to run the unix mail command …