10-05-2011, 03:05 PM
(This post was last modified: 10-05-2011, 03:05 PM by ChromeWolf.)
(09-28-2011, 11:24 PM)andrewjs18 Wrote: hmn, now the script is dying on the "Unknown Database!" section even when I use live, functioning database information for a forum I admin.
Try making a configs.php
PHP Code:
<?php
$dhost = "localhost";
$dusername = "root";
$dpassword = ""; //Your Database Password
$ddatabase = ""; //Your Database name.
$con = mysql_connect($dhost, $dusername, $dpassword) or die("Cannot Connect");
mysql_select_db($ddatabase, $con);
?>
I don't know if this is exactly what you're looking for.