Make a simple dynamic website

is there any good place in the web to learn how to make a dynamic website with admin section to add and delete records

Hello!

Check this out:

1 Like

am trying to run MySQL in my win cmd but whenever I type MySQL it runs MariaDB instead why is this happening and whenever i try to install laravel via composer the cmd stuck in the installation no errors msg no success msg nothing

Hi @AwadGorg!

am trying to run MySQL in my win cmd but whenever I type MySQL it runs MariaDB instead

The means the Database system you’re using is MariaDB, which is based on MySQL. As far as I know, there’s nothing wrong with that :wink:

whenever i try to install laravel via composer the cmd stuck in the installation no errors msg no success msg nothing

Can you wait it until the end? It can take a lot of time for Composer to download/manage all dependencies :slight_smile:

1 Like

am using the code to create a database from my cmd
mysql create database learnlaravel;

but it shows me an error un-correct syntax but the guy how am lessening to his tutorials works fine for him.
why am getting this error

Try enclosing the parameter in single quotes: ''

mysql create database 'learnlaravel';

2 Likes