我有一个表单,允许我将域插入数据库中的“域”表。
表单的一部分包括我为该域提供的服务列表,这些服务以一系列复选框的形式呈现并作为数组处理。这些服务被插入到marketing_lookup表中,该表包含两个具有域ID和服务ID的列。
我正在尝试使用PDO重写mysql插入语句。
我可以将域代码插入域表。
我需要帮助将services数组插入marketing_lookup表。 服务
我页面上的html表单
<form ....>
...
<input type='checkbox' name='services[]' value='1'>Service 1<br>
<input type='checkbox' name='services[]' value='2'>Service 2<br>
...
</form>
到目前为止,我已经复制并粘贴和编辑了
...
code inserting the domain into the domain table here
...
//start inserting services here
if ($services == '') $services = array();
$services = $_POST['services'];
$id = $conn->lastInsertId(); //obtained from above
if (!isset($_POST['services'])):
echo 'Nothing Selected';
else:
try {
$conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$stmt = $conn->prepare('INSERT IGNORE INTO marketing_lookup SET
`domain_id` = :id,
`service_id` = :serviceid')
foreach ($services as $serviceid) {
$a = array (':1'=>$serviceid['1'],
':2'=>$serviceid['2']);
if ($stmt->execute($a)) {
//Query succeeded
}
else {
// Query failed.
echo $q->errorCode();
}
// close the database connection
$conn = null;
} // end foreach
} //end try
catch(PDOException $e) {
echo $e->getMessage();
}
endif;
?>
答案 0 :(得分:1)
首先,您的评估顺序是错误的。在检查POST值是否存在之前,您不应该使用POST值设置变量。您应该检查它的存在,然后将其设置为变量,只有它存在。
$id = $conn->lastInsertId(); // obtained from above (*)
if (!isset($_POST['services'])) {
echo 'Nothing Selected';
} else {
$services = $_POST['services']; // array(0 => 1, 1 => 2, ...)
其次,我假设您已经拥有之前的连接(*) - 因此无需重新连接。由于您的查询很短,您可以使用?
绑定参数,如Example #3所示。
try {
$stmt = $conn->prepare('INSERT IGNORE INTO marketing_lookup SET domain_id = ?, service_id = ?');
foreach ($services as $serviceId) {
$stmt->execute(array($id, $serviceId));
}
} catch (PDOException $e) {
echo $e->getMessage();
}
}
$conn = null; // pointless
您可能希望在进行多次插入时查看transactions。
答案 1 :(得分:0)
由于您创建了:id
和:serviceid
的占位符。您必须使用此方法绑定参数而不是:1 or :2
更改
$a = array (':1'=>$serviceid['1'],
':2'=>$serviceid['2']);
要
$a = array (':id'=>$serviceid['1'],
':serviceid'=>$serviceid['2']);