CATEGORY: MySQL
MySQL Help

QUESTION:
What is the BASIC CONFIG for the MySQL DB ?

ANSWER:
$hostname = "localhost"; /* MUST ALWAYS be localhost */
$username = "username"; /* This will be the username you used to login to your control panel when you installed MySQL */
$password = "password"; /* This will be the PassWord you used to login to your control panel when you installed MySQL */
$userstable = "table"; /* You will have had to CREATE a table and you will have named it something*/
$dbName = "something_com"; /* You will be given this when you login to your control panel and click on the MySQL button*/

############################################################

Please be advised that this is a SUPPLEMENTAL Online Manual.

The PRIMARY Online Manual is inside your Online Control Panel... to access it, just click Documentation link at very bottom of Online Control Panel screen.

You should always consult the Online Manual inside your control panel first... and only consult this SUPPLEMENTAL Online Manual as a last resort.

if after consulting the Control Panel Documentation, you still need assistance, please CONTACT SUPPORT

top