I have a problem to insert and update database at the same time, I have a form that user can edit the information or add new field, what I want is when an user edits the form and if the user adds new filed(s) I want I can insert and update the database together.
Here is my code
function insert_update_db(){
global $db;
$section = $_POST["page"];
$fieldsArray = array( "section_id", // Primary key
"section_title",
"section_name",
"section_content",
);
$fields = '`' . implode('`, `', $fieldsArray ) . '`';
$sql = "INSERT INTO `db_section` ($fields) VALUES";
$valueArray = array();
$indexKey = array();
foreach ($section["section"] as $value) {
$section_id = ($value["section_id"] != "" ? $db->quote($value["section_id"]) : "NULL" ); // Check if curr field has a ID
$title = $value["title"];
$name = $value["name"];
$content = $value["content"];
$valueArray[] = "($section_id, '$title','$name', '$content')";
if($section_id != "NULL"){
$indexKey[] = str_replace("'", "", $section_id);
$sql_update = "UPDATE `db_section` SET
`section_title` = '$section_title',
`section_name` = '$name',
`section_content` = $content
WHERE `section_id` = $section_id;";
$update = $db->query($sql_update);
echo $sql_update;
if($update){
$db->sql_status = "Success";
}
}
}
$sql .= implode(",", $valueArray);
$sql .= " ON DUPLICATE KEY UPDATE ";
$sql .= "section_id=" . implode(" AND section_id=", $indexKey);
$insert = $db->query($sql);
if($insert){
$db->sql_status = "Success";
}else{
$db->sql_status = "Error";
}
}
In edit page I added hidden input section_id to get primary key for the field is being edit, and will give NULL for a new field, on action I try to do if section_id != 'NULL' then UPDATE the field.
I tried to use ON DUPLICATE KEY UPDATE to check if section_id is duplicate but it does not work at all.
Sorry about my English, any help will be appreciated :)