我正在尝试将一组值保存到MySQL数据库中。这是我的代码:
$values = array('jaime','11124583363', '5554625', '312458795','1999-12-02','soldierjesus', 'calle 12', 'carismatica', 'necesito oracion', '1', '1');
$data->create_persons('new_person', $values);
public function create_persons($table, $values)
{
$query = ("INSERT INTO $table ('name', 'number_document','phone', 'cell_phone', 'birth_date', 'email',
'address', 'other_church', 'pray_request', 'districts_id', 'professions_id')
VALUES('".implode("','", $values).")'") or die(mysqli_error());
mysqli_query($this->_connection, $query);
}
数字不能 - > ''
怎么退出这个?
谢谢
答案 0 :(得分:4)
变化
VALUES('".implode("','", $values).")'")
到
VALUES('".implode("','", $values)."')")
换句话说,将")'"
更改为"')"
答案 1 :(得分:0)
没有给它太多时间,但我认为插入查询在这里是错误的:
`$query = ("INSERT INTO $table ('name', 'number_document','phone', 'cell_phone', 'birth_date', 'email', 'address', 'other_church', 'pray_request', 'districts_id', 'professions_id') VALUES('".implode("','", $values)."')") or die(mysqli_error());`
关闭VALUES()的'(单引号)位置错误。
此致 查理