Wednesday, 10 February 2016

How to Create a MySQL DatabaseIn Feburary 2016 10,

In Feburary 2016 10,
Log into the phpMyAdmin interface on your Web space. You will need the username and password assigned by your Web-hosting provider.
Find the text 'Create New Database' on the main frame of the page.
Enter a name for your new database into the blank text field provided.
Click 'Create.' You will get a confirmation page telling you that your database has been created.
Using the SSH Command Line
Log into your Web space using an appropriate SSH client. You will need the username and password assigned to you by your Web-hosting provider.
Enter the following into the command line, using your own username and password instead of the words in capitals:
mysql -uUSERNAME -pPASSWORD
Enter the following into the MySQL prompt that you will be given, with your database's proposed name instead of NAME:
create database NAME;
Your database has now been created.
In Feburary 2016 10,

No comments:

Post a Comment