Jump to content

Connecting to database won't work.


pocobueno1388

Recommended Posts

I am having trouble getting connected to my database. Here is the code I am using to do it:

config.PHP
-------------

<?php
$host = "localhost"; // your MySQL host i.e. the server on which the database is, usually localhost
$user = "*****"; // your MySQL username
$pass = "*****"; // your MySQL password
$db = "*****"; // the database to which you're trying to connect to

$conn = mysql_connect("$host", "$user", "$pass") or die ("Unable to connect to database.");
mysql_select_db("$db", $conn);
?>

Of course there are actual values stored in the variables other then the '*****'.

Is there something wrong with this script? I just use the code

include "config.php";

on the top of every script I need it with and it won't work. Any help would be appreciated. Thanks
Link to comment
Share on other sites

change your code to this:
[code]
<?php
$host = "localhost"; // your MySQL host i.e. the server on which the database is, usually localhost
$user = "*****"; // your MySQL username
$pass = "*****"; // your MySQL password
$db = "*****"; // the database to which you're trying to connect to

$conn = mysql_connect("$host", "$user", "$pass") or die (mysql_error());
mysql_select_db("$db", $conn) or die(mysql_error());
?>
[/code]
and post the error message.

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.