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
https://forums.phpfreaks.com/topic/11682-connecting-to-database-wont-work/
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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.