Hi guys ... i've been searching for site with tutorials but i haven't found yet ... so would u please explain to me how to create a Database using MySQL ??😕 😕 😕
login into mysql
ex. 'c:\mysql\bin\mysql --user=root --pass=password'
then
'create database mydbname;'
then you can create tables by
'create table mytable ( id int unsigned not null auto_increment, title varchar(255), PRIMARY KEY(id));'