Ads 468x60px

Wednesday, December 7, 2011

Created Database With MYSQL

Here's How:
  1. If you have phpMyAdmin, you first need to login. In the right hand pane you are looking for "Create New Database". All you need to do is enter the database name, and wha-la, your done. Sometimes this feature is disabled. If this is the case, you need to contact your hosting company to create a new database.
  2. You can use SQL code though the SQL query window in phpMyAdmin, or from a command line. You can create a database by executing the following SQL code:
    create database DBname; 
    Be sure to replace DBname with the actual name you wanted your database to be called.

0 comments:

Post a Comment