关于用php连接mysql数据库的问题

WBOY
Release: 2016-06-23 14:06:18
Original
883 people have browsed it

function PA{global $host,$user,$pw,$name;    $conn = mysql_connect("$host","$user","$pw");     mysql_select_db("$name",$conn) or die("不能选择数据库:".mysql_error());    unset($dbhost,$dbuser,$dbpw,$dbname);}
Copy after login


这是一个源码,为什么这里user和pw都没有赋值?这是怎么实现连接mysql的? 写这代码的人把密码和用户名放在别的地方了?还是这个mysql没有设定用户名和密码?
大神们指点下吧。谢谢


回复讨论(解决方案)

global $host,$user,$pw,$name;
不是已经告诉你那些变量在别处吗?

另外 unset($dbhost,$dbuser,$dbpw,$dbname); 是画蛇添足
因为 global 生命的变量都是引用方式的,删了也等于没删

哦。那一般这些变量都会在哪赋值的啊?我怎么找不到他把用户名和密码放哪了?还是他给加密啦?找了好多文件了!
谢谢!

我把所有文件都找完了。也没找到global $host,$user,$pw,$name; 这些变量是在哪赋值的。这是怎么回事啊?

在所有的文件里搜索 host 出现的地方

在config里找到了。谢谢

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template