In this article, I’ll walk you, generating QR code in Node.js using node-qrcode npm module. A QR Code is a 2-dimensional bar code and it is a machine-readable optical label that contains information about […]
How to fix XAMPP server error xampp-control.ini Access is denied
We gonna fix the XAMPP access denied error in windows by running the application as an administrator. You can just right-click xampp-control.exe and you can run as administrator each time whenever you start XAMPP or you […]
How to Import and Export MySQL Databases
Export Database To export a database, open up the terminal, making sure that you are not logged into MySQL, and execute the below command with database details.
1 |
mysqldump -u [username] -p [database_name] > [database_name].sql |
UnZip Compressed Files using PowerShell
How to remove all docker containers and images using PowerShell?
Automatically clean up docker on a windows machine?
How to enable the execution of PowerShell scripts?
The PowerShell execution policy is default set to Restricted. You…
Fetch Data From Database In Descending In CodeIgniter
To fetch data in descending order from the database in CodeIgniter you need to use the order_by() along with get() method. Below is the sample code. I hope you like this Post, Please feel free to comment below, your suggestion […]
PHP 8 – Nullsafe operator
The operator nullsafe allows a developer to eliminate the null check for each property before going onto the next chain of the property or method. It is very common to only want to call a method or fetch a property on […]
Custom Helper functions in Laravel
In this post, we gonna create custom functions and load it in the Laravel project. These functions can be accessible all over the project. Loading custom helper functions in Laravel is pretty straightforward. Let’s […]