开发者

ADOdb gives "Fatal error: Cannot pass parameter 2 by reference"

开发者 https://www.devze.com 2023-04-12 02:04 出处:网络
I\'ve using ADOdb Execute function: $query = \"select * from users where user_id = ? and PWD = ?\"; $execute = $conn->Execute($query,array($username, $password));

I've using ADOdb Execute function:

$query = "select * from users where user_id = ? and PWD = ?";
$execute = $conn->Execute($query,array($username, $password));

Which gives the error:

Fatal error: Cannot 开发者_StackOverflow中文版pass parameter 2 by reference

I have no idea why. Any ideas?


Most likely the Execute method is declared as public function Execute($query, &$params) meaning the second method is expected to be passed by reference. Thus you have to pass a variable. Try this:

$query = "select * from users where user_id = ? and PWD = ?";
$params = array($username, $password);
$execute = $conn->Execute($query, $params);
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号