myfileminder.com/articles/dbconnect.php
webmaster.php
When I run it I get the error
line 16 is this:
but I cant find the problem.
PHP:
$server="---server---";
$user="---username---";
$pass="---password---";
$database="---database---";
$sql="---query---";
webmaster.php
PHP:
include 'http://www.myfileminder.com/articles/dbconnect.php';
mysql_connect($server,$user,$pass) or die("Could not connect to database: " . mysql_error());
mysql_select_db($database) or die("Could not select the database: " . mysql_error());
$result=mysql_query($sql) or die("Could not query the database: " . mysql_error());
mysql_close();
When I run it I get the error
Code:
Warning: mysql_connect(): Can't connect to MySQL server on 'localhost' (10061) in e:\domains\m\myfileminder.com\user\htdocs\articles\webmaster.php on line 16
line 16 is this:
PHP:
mysql_connect($server,$user,$pass) or die("Could not connect to database: " . mysql_error());
but I cant find the problem.
Last edited:






