JWT (Json Web Tokens) can be used for user authentication. They are token-based. First, you need to encode the token and send it to the…
I created an online free FTP manager in PHP that allows developers to work on their projects from anywhere. I created this tool in PHP…
Real estate business that requires a website for their business, we are providing a free website for them in PHP and MySQL (Laravel framework). Screenshots…
Check if string is valid JSON array or object in PHP using PHP build-in functions. There are 2 ways to check the validity. 1st method…
If you are working in Firebase, then you might have encountered an issue with child_added event or onChildAdded method. It is called multiple times on…
Previously we did password less authentication in Node JS and Mongo DB, in this article we will do it in PHP and MySQL. Suppose you…
If you are working in Laravel, you might have noticed that majority of the developers save sensitive information like database credentials, SMTP settings and API…
Getting file extension from file name or path can be done in Javascript and PHP. I will show you the steps to get the file…
Suppose you are creating a tab layout where there are multiple tabs and each tab has its own content. You click on the tab button…
In order to get an authentication user without using sanctum middleware in Laravel, you just need to pass the string “sanctum” in auth() method. Auth…