Home >Backend Development >PHP Tutorial >PHP 中Mysql配置连接的问题

PHP 中Mysql配置连接的问题

WBOY
WBOYOriginal
2016-06-23 13:40:50891browse

装Mysql就不说了,网上教程一把,一般都行

http://tech.163.com/06/0206/11/299AMBLT0009159K_3.html

这个就挺好的。

配置好(主要是

修改php.ini文件,启动一些扩展,把
  extension=php_gd2.dll
  extension=php_mysql.dll
  extension=php_mysqli.dll
  extension=php_openssl.dll

这里要注意看清楚这几个都放开

$link=mysql_connect('localhost','root','yubing'); 
if(!$link) echo "失败!"; 
else echo "成功!"; 
mysql_close();

?>

这个时间应该不会再报mysql_connect找不到函数了。

phpinfo();
?>

已经能看到关于mysql的信息了。

这时候如果上边的代码在网页浏览器上不报错了,但是网页无法显示,是比较棘手的。

如果你是win7的系统:

把php文件夹下的libmysql.dll考到windows\system32下

(64位不妨也拷这里到C:\Windows\SysWOW64)问题应该解决了

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn