how..?

Status
Not open for further replies.

happymat

New Member
Messages
1
Reaction score
0
Points
0
So I'm making a website so I need databasehost link because I need like:

''<?php
$dbname = '*****';
$dbuser = '******';
$dbpass = '******';
$dbhost = 'mysql.x10hosting.com'; <<---- so I need this dbhost link
mysql_connect($dbhost, $dbuser, $dbpass);
mysql_select_db($dbname);
?>''
 
Last edited:

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
The database server is localhost -- that's the only value you can use with Free Hosting; remote MySQL access is disabled.
 
Status
Not open for further replies.
Top