1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<?php import_request_variables('pG', 'p_'); $question_id = $p_question_id;
$sel_q = "select * from cms_question where id_question = '$question_id'"; $que_q = mysql_query($sel_q); $obj_q = mysql_fetch_assoc($que_q);
$navig['question&id_sub='.$p_id_sub] = $p_sub_name; $navig['question_title'] = 'เพิ่มหัวข้อ'; navigator($navig); echo"<br>"; bar_header($p_title); // Bar_Header fieldset_top($obj_q['topic']);
//debuga($_POST);
$_title = select_max_query0('title_id', 'cms_question_title'); $title_id = $_title[0] == '' ? 1 : $_title[0]; $_title_order = select_max_query('title_order', 'cms_question_title', 'question_id', $question_id."' AND title_parent = '0"); $title_order = $_title_order[0] == '' ? 1 : $_title_order[0]; $ins_title = "INSERT INTO cms_question_title (title_id, title_name, title_parent, title_order, question_id, type_id) VALUES ('$title_id', '$p_title', '0', '$title_order', '$question_id', '$p_question_type')"; mysql_query($ins_title); //echo '<br/><br/>';
$_data = select_max_query0('title_id', 'cms_question_title'); $data_id = $_data[0] == '' ? 1 : $_data[0]; foreach($_POST as $key => $data){ if(strpos($key, 'data_') > -1){ $_key = explode('_', $key); $order = $_key[1]; $ins_data = "INSERT INTO cms_question_title (title_id, title_name, title_parent, title_order, question_id) VALUES ('$data_id', '$data', '$title_id', '$order', '$question_id')"; mysql_query($ins_data); // echo '<br/>'; ++$data_id; } } //echo '<br/>';
if($p_question_type == '2'){ $array_choice = explode('#@+=', $p_all_choice); $_choice = select_max_query0('choice_id', 'cms_question_choice');//, 'title_id', $title_id); $choice_id = $_choice[0] == '' ? 1 : $_choice[0]; $n = 1; foreach($array_choice as $choice){ $ins_choice = "INSERT INTO cms_question_choice (choice_id, choice_name, choice_order, title_id, question_id) VALUES ('$choice_id', '$choice', '$n', '$title_id', '$question_id')"; mysql_query($ins_choice); // echo '<br/>'; ++$choice_id; ++$n; } }else if($p_question_type == '3' || $p_question_type == '4'){ if($p_add_other == '1'){ ++$order; $ins_data = "INSERT INTO cms_question_title (title_id, title_name, title_parent, title_order, question_id, title_other) VALUES ('$data_id', 'อื่นๆ', '$title_id', '$order', '$question_id', '1')"; mysql_query($ins_data); // echo '<br/>'; } } //echo '<br/>';
echo msg_insert_data(); // ข้อความแสดงการผลการเพิ่มข้อมูล refresh_data('index.php?mod=question&path=question&id_sub='.$p_id_sub, 1); // กลับหน้าหลัก ?>
|