1
General Discussion / Re: Raggruppare campi in groupBox
Note that you only configure it on the field you want to start the group with.
This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.
$table_data = array(
"user_id" => $_POST["id"],
"name" => $_POST["nama"],
"status" => $_POST["user_status"]
);
$db->where("user_status",'1');
$bool = $db->update("tb_name", $table_data);}
$table_data = array(
"user_id" => $_POST["id"],
"name" => $_POST["nama"],
"status" => $_POST["user_status"]
);
if($_POST["user_status"] == '1') {
$bool = $db->insert("tb_name", $table_data);
}