- 论坛徽章:
- 0
|
服务器配置iis 5.0 + php 5.0 + MySQL 4.0.2
使用如下的语句,
<?php
$link=mysql_connect('localhost','root','test');
if(!$link) echo "fail";
else echo "success";
mysql_close();
?>;
判断结果说"fail",并提示说:
MySQL said:
#1045 - Access denied for user: 'root@localhost' (Using password: YES)
MySQL数据库的配置文件如下:
#This File was made using the WinMySQLAdmin 1.4 Tool
#2004-11-19 10:51:20
#Uncomment or Add only the keys that you know how works.
#Read the MySQL Manual for instructions
[mysqld]
basedir=C:/mysql
#bind-address=60.176.39.122
datadir=C:/mysql/data
#language=C:/mysql/share/your language directory
#slow query log#=
#tmpdir#=
#port=3306
#set-variable=key_buffer=16M
[WinMySQLadmin]
Server=C:/mysql/bin/mysqld-nt.exe
user=root
password=test
QueryInterval=10
如下图所示:
![]() |
|