请问我有这个问题,我在这里:
$query = $db->prepare('Update survey_content set '.$type.' = '.$type.'+1 where id = '.$where);
$query->execute();
我是 PDO 的新手,我真的不知道如何创建新查询,我需要在数据库中添加一条记录,这样可以吗?
$query1 = $db->prepare('INSERT INTO daily (selected)
VALUES (.$type.)');
$query1->execute();