HTML CSS Interview Questions

  What is the Box model in CSS? Difference between Display none vs position hidden in CSS?

How to Import and Export Databases in MySQL or MariaDB

Introduction In this blog, you will work on database dumps in MySQL and MariaDB. In particular, you will explore exporting the database and importing the dump file.    Step 1. Exporting a MySQL or MariaDB Database The mysqldump utility exports databases in SQL files. It makes it...

Laravel .env variable always returns null

Laravel cache your configurations so app execution become fast. Every time when you change your configuration on server then clear your cache. You should clear you configuration cache by following these commands:   These commands for clearing the config: php artisan config:cache...