PHP - 获取成员函数错误

时间:2017-02-04 19:25:12

标签: php html mysql database mysqli

我想让这个表单从url中获取id假设: http://localhost/x/y/index.php?的 ID = 1   并更新文章表中的数据,但我收到错误: 致命错误:在第38行的http://localhost/x/y/index.php中的布尔值上调用成员函数query(),这是代码中以**开头和结尾突出显示的行。

resources :users, only: [:new, :create, :edit, :update, :show] do
  resources :addresses, only: [:new, :create]
end

1 个答案:

答案 0 :(得分:0)

应该是这样的:

headers.Add("ServiceBusNotification-Tags", recipient);

使用mysql_query(),mysql_query需要第一个参数作为数据库连接

阅读http://php.net/manual/en/function.mysql-query.php

此外,不推荐使用mysql_connect,使用mysqli或PDO,您应该准备并清理您的输入。

请参阅:mysql_query