CON131.php
973 Bytes
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
<?php
//*****************************************************************************
//*
//* プログラム名:期限更新処理
//* プログラムID:CON131.php
//* 機能 :期限更新処理
//* 作成者 :
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
include('./include/smarty.conf');
$strDBinc="include/dbcon.inc";
include($strDBinc);
$strSQL="";
$objRec="null";
//一回消す
$strSQL = "delete from mst_default_data where data_no = 2 or data_no = 3";
$objRec = pg_exec($strSQL);
//インサート
//掲示板
$strSQL = "insert into mst_default_data (data_no, default_data) values(2, '".((int) $sel_keiji)."')";
$objRec = pg_exec($strSQL);
//回覧板
$strSQL = "insert into mst_default_data (data_no, default_data) values(3, '".((int) $sel_kairan)."')";
$objRec = pg_exec($strSQL);
header("Location: CON130.php");
?>