Jump to content

x10Hosting mysql Help


ZappyLawns

Recommended Posts

I created a db named zappylaw_system

 

I used this: 

 

Name the table "dbUsers." It will need 4 fields:

Name Type Addition
id int(10) Primary Key, AUTO_INCREMENT
username varchar(16) Unique
password char(16)
email varchar(25)

 

 

<?
// Replace the variable values below
// with your specific database information.
$host = "rob2";
$user = "zappylaw_rob";
$pass = "haha12";
$db   = "zappylaw_system";
 
// This part sets up the connection to the 
// database (so you don't need to reopen the connection
// again on the same page).
$ms = mysql_pconnect($host, $user, $pass);
if ( !$ms )
{
echo "Error connecting to database.\n";
}
 
// Then you need to make sure the database you want
// is selected.
mysql_select_db($db);
?>
 
I think my problem is here:
 
 
$host = "rob2";
$user = "zappylaw_rob";
$pass = "haha12";
$db   = "zappylaw_system";
 
i added a user named zappylaw_rob
 
password was haha12
 
and mysql host is rob2
 
waht am i doing wrong? If you want to help me more go here: [removed]
Edited by Ch0cu3r
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.