bloomdb is the database name though, This is the two things im using.
Before i say so you know im using Windows XP - Apache 2 - PHP 4 - MYSQL 4.1.
temp_con.php
<?php
require($_SERVER["DOCUMENT_ROOT"]."/config/db_config.php");
$connection = mysql_connect($db_name, $db_user, $db_password) or die("Error - Cannot connect to MYSQL Database");
echo "Connected Successfully";
?>
db_config
<?php
$db_host = "localhost";
$db_user = "root";
$db_password = "password i use to access command prompt in MYSQL";
$db_name = "bloomdb";
?>
If anyone can help me get this sorted id be SO greatful, i am pulling my hair out over this, been trying for days now 🙁
Chris