Create MySql Database?
That depends mostly on your Web host, and what tools they’ve provided for accessing their MySQL installation. See your Web hosting account information for suggestions. In setting up your database, you actually automatically created certain security tables in it, including the Users table. As part of creating the database, you’re asked to provide an administrator password for the Administrator account, and at least one User name and password, for User level access. So, in future connections, you’ll need to authenticate using those credentials, as appropriate to your needs. To create additional tables, or to link them, do operations and populate the table in your database, you give MySQL SQL statements, or groups of statements, that instruct it to do what you want. To make a new table, you would use the CREATE TABLE statement: http://www.1keydata.com/sql/sqlcreate.ht… If you can connect directly to the MySQL proces