**更新**
我已经更新了我的代码但仍然没有让连接表更新
的乐趣我有三张桌子:
docs
doc_id
doc_name
doc_content
cat
cat_id
cat_name
cat_color
cat_icon
cat_doc_join
id
cat_id
doc_id
我目前能够在我的docs表中创建和插入数据,它将doc_name和doc_content插入到表中就好了。我已经在new_doc.php表单中引入了类别,该表单显示了可用类别的数组,可以通过复选框选择。就目前而言,我不确定如何修改我的插入查询以获取我正在创建的文档的ID以及我选择的所选复选框的ID,然后继续不仅插入到docs表中而且还插入一行(s)如果选择了一个或多个类别,则进入doc_cat_join表:
以下是处理插入的脚本:
<?php
require ('../../db_con.php');
error_reporting(E_ALL);
ini_set('display_errors', '1');
// FORM VALIDATION & SUBMISSION
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$errors = array(); // BEGIN AN ERRORS ARRAY
// CHECK FIRST NAME
if (empty($_POST['doc_name'])) {
$errors[] = 'You forgot to enter a document name.';
} else {
$dn = mysqli_real_escape_string($dbc, trim($_POST['doc_name']));
}
// CHECK LAST NAME
if (empty($_POST['doc_content'])) {
$errors[] = 'You forgot to enter any document content.';
} else {
$dc = mysqli_real_escape_string($dbc, trim($_POST['doc_content']));
}
if (empty($errors)) {
// MAKING THE QUERY
$q = "INSERT INTO docs (doc_name, doc_content, created_date) VALUES ('$dn', '$dc', NOW() )";
$r = mysqli_query($dbc, $q);
if ($r) {
$cat_ids=isset($_POST['cats'])&&is_array($_POST['cats'])?array_keys($_POST['cats']):array();
$query='INSERT INTO cat_doc_join (cat_id,doc_id) VALUES';
$length=count($cat_ids);
for($i=0;$i<$length;$i++){
$query.='('.$cat_ids[$i].','.$doc_id.')';
if($i<$length-1)
$query.=',';
}
mysqli_query($dbc, $query);
// REDIRECT BACK TO DOCUMENT LIST
echo("<script>location.href = 'list_doc.php';</script>");
} else {
// ERROR CHECKING!
echo '<h1>System Error!</h1> <p>you could not be registered because of a system error!<br></p>';
// DEBUGGIN MESSAGE
echo '<p>' . mysqli_error($dbc) . '<br><br>query: ' . $q . '</p>';
}
mysqli_close($dbc);
exit();
} else {
// REPORT THE ERRORS
echo '<h1>Error!</h1><p class="error">The Following error(s) have occured:<br>';
foreach ($errors as $msg) {
echo " - $msg<br>\n";
}
echo '</p><p>Please try again!.</p><p><br></p>';
}
}
?>
以下是表单的一部分,它是一个类别数组:
<?php
$q = "SELECT * FROM cats";
$r = mysqli_query ($dbc, $q); // Run the query.
echo '<div class="view_body">';
// FETCH AND PRINT ALL THE RECORDS
while ($row = mysqli_fetch_array($r)) {
echo '<br><input type="checkbox" name="cats['.$row['cat_id'].']"> '.$row["cat_name"]. '</label>';
}
echo '</div>';
?>
我想我正在寻求的建议是如何从复选框中包含一个值为cat_id,也在INSERT查询中添加到连接表中以便插入。
答案 0 :(得分:1)
<form method = "post">
<input type="checkbox" name="checkboxes[]" value="<?=$row["cat_name"];?>"/>
<input type="checkbox" name="checkboxes[]" value="<?=$row["cat_name"];?>"/>
<input type="checkbox" name="checkboxes[]" value="<?=$row["cat_name"];?>"/>
<input type="submit" name ="cmd_submit"/>
</form>
<?php
if(isset($_POST['cmd_submit'])){
$arr_checkboxes = $_POST['checkboxes'];
foreach($arr_checkboxes as $row){
//do your insert code here.
}
}
?>
我还没有尝试过。因为我不在我的笔记本电脑上..但我认为这会给你一个想法。并假设复选框已经在你的循环中包裹。
答案 1 :(得分:1)
while ($row = mysqli_fetch_array($r)) {
echo '<br><input type="checkbox" name="cats['.$row['cat_id'].']"> '.$row["cat_name"]. '</label>';
}
并像这样使用它(我认为$doc_id
已知,doc_id
和cat_id
是整数,id
表的cat_doc_join
字段是自动增量的):
$cat_ids=isset($_POST['cats'])&&is_array($_POST['cats'])?array_keys($_POST['cats']):array();
//please check everything is fine here, they are ints, no sql injection,etc...
$query='INSERT INTO cat_doc_join (cat_id,doc_id) VALUES';
$length=count($cat_ids);
for($i=0;$i<$length;$i++){
$query.='('.$cat_ids[$i].','.$doc_id.')';
if($i<$length-1)
$query.=',';
}
//run your query
警告:您必须清理输入以避免SQL注入和填充