problem with finding my mysql database (PHP)

Status
Not open for further replies.

wikiadmin

New Member
Messages
1
Reaction score
0
Points
0
Hi I'm using this rather simple PHP script

<?
$dburl="?????";
$dbuser="*****";
$dbpass="*****";
$dbtable="*****";

mysql_connect("$dburl","$dbuser","$dbpass");
mysql_select_db("$dbtable");
?>


but I'm stuck at entering my databases location, I made it with the mysql databases part of my x10 account
and I created the tables through the PHPMyAdmin
I know everything is correct except I don't knwo what the enter behind $dburl"

if anyone could help me out
would be appreciated

thanx
Bart
 

Brandon

Former Senior Account Rep
Community Support
Messages
19,181
Reaction score
28
Points
48
That would be 'localhost'.
 
Status
Not open for further replies.
Top