a very basic question!!!!!!!!!
a very basic question!!!!!!!!!
FurnishedHomes
Posts: 13Questions: 0Answers: 0
Hi guys,
I have no php experience apart from a tiny bit in my degree. I'm pretty clear on most of the tutorial but I have a bit of a newbie issue - could someone please explain the following line from the tutorial in a bit more depth -
Installing the SQL
Copy the SQL in the file and run it in your database access portal.
I am using phpMyAdmin. I don't have a database. Do I need to create one and somehow add the SQL to that?? To get things working I would like to try and implement the 'users example' from the editor package, but later down the line I want to make a customer contact list.
Any help / walk throughs / links very very much appreciated!
I have no php experience apart from a tiny bit in my degree. I'm pretty clear on most of the tutorial but I have a bit of a newbie issue - could someone please explain the following line from the tutorial in a bit more depth -
Installing the SQL
Copy the SQL in the file and run it in your database access portal.
I am using phpMyAdmin. I don't have a database. Do I need to create one and somehow add the SQL to that?? To get things working I would like to try and implement the 'users example' from the editor package, but later down the line I want to make a customer contact list.
Any help / walk throughs / links very very much appreciated!
This discussion has been closed.
Replies
Yes, you absolutely will need a database. Assuming you have access privileges you could just use `CREATE DATABASE `myDatabase`` (change the name obviously), or in phpMyAdmin there will be a 'Create Database' link. You'll also need to create a user account which has access to that new database is you don't already.
I'm surprised you don't have a database already. Is it a clean install of MySQL or something?
When you've got a database, click the "SQL" tab in phpMyAdmin and paste the contents of the SQL file into the text area and submit it. The required table will be created.
Let us know how you get on!
Allan
I think I'm going to create the database within phpMyAdmin. I can't see where the databases go once they are created so I assume that I would need to export it somewhere?
Right, cup of coffee and time to get started!
Thanks,
Allan
Thank you very much!!