我正在尝试将列的名称作为变量传递给PHP数据库查询。
硬编码的语法完美地工作并且是:select max([257612cr]) as price from Price_TekwaniPrice where customeraccount='DAY001'
当我传递变量时,我得到错误trying to get property ofnon object
。我的语法是:
$query = $this->db->query("
select max(['$product']) as price from Price where customeraccount='$customer'
");
我也试过:
$query = $this->db->query("
select max(".$product.") as price from Price where customeraccount='$customer'
");
我已经确认了变量被正确地传递了。'$customer'
的语法工作得很好,所以仅仅将$product
变量作为列名传递是很麻烦的。
我使用PHP与codeigniter.任何建议欢迎.
一如既往的感谢,
1条答案
按热度按时间j9per5c41#
没有必要连接一个PHP变量时,已经打开双引号试试这个
或
虽然关于错误,你得到的是由于我认为你的数据库驱动程序没有加载第一次尝试加载数据库
$this->load->database('default', TRUE);
使用CI的活动记录的最佳方法是
参见活动记录