kan iemand mij helpen met mijn connectie ?
ik krijg steeds deze foutmelding
Warning: mysql_connect(): Access denied for user: '[email protected]' (Using password: YES) in /var/www/html/aanmelden.php on line 8
Access denied for user: '[email protected]' (Using password: YES)
deze code gaat het om
<?
$host = "";
$user = "";
$pass = "";
$db = "members";
mysql_connect($host,$user,$pass) or die(mysql_error());
mysql_select_db($db);
// Webmaster gegevens
$webmaster_email = "[email protected]";
$webmaster_url = "http://www.profweb.be";
// Waar het script zich bevindt ( Zonder / op het einde )
$script_url = "http://www.profweb.be";
// Maximaal aantal PB's in een inbox
$maxpm = 50;
// Accounts activeren
// 0 = Zelf activeren ( d.m.v PHPMyAdmin/MySql Front )
// 1 = Activeringsmail sturen
// 2 = Automatisch activeren
$actmail = 2;
?>
1.027 views