Ok so in my include file there is this:
<?php
$host-"asfkjdsi.sdfiasf";
$user-"thisismyusername";
$password-"thisismypassword";
$database-"players";
?>
And then after the include in my new page I put:
$con = mysql_connect($host,$user,$password);
$selectdb = mysql_select_db($database,$con);
And it gives me an error saying local host cannot be found or something like that.