Adobe Dreamweaver 0
Adobe Muse 0
ASP.net 0
.htaccess 6
CSS 5
Perl 0
PHP 57
PHP - User System 79
HTML 11
Java 0
Javascript 13
Ruby on Rails 0
General Web Development 4
Operating Systems
Video & Audio Editing
Adobe After Effect 0
Adobe Audition 0
Adobe Premiere 0
Final Cut 0
FruityLoops 0
iMovie 0
Windows Movie Maker 0
App Development
Hardware
Miscellaneous
Why didnt you just go :
<?PHP
//Variables
$db_user = "db_user";//User name for the database
$db_pass = "password";//Password for the database
$db_host = "localhost";//Database host, mostly localhost
$db_name = "db_name";//the database name
//Connection with the Varibles
$mysql_access = mysql_connect($db_host, $db_user, $db_pass);
mysql_select_db($db_name);
?>
Then the file in which you put this in could be called connect.php
Then at the top of each of your pages all youd need to put is include('connect.php');
I think that would be wayyyy simpler...