TDL902.php
1.07 KB
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
<?php
//*****************************************************************************
//*
//* プログラム名:ToDo
//* プログラムID:TDL902.php
//* 機能 :ToDo カテゴリ削除
//* 作成者 :
//*
//*****************************************************************************
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";
$strwhere = substr($ctglist, 0, (strlen($ctglist) - 1));
$strWhere = str_replace("/", " or category_syubetu = ", $strwhere);
$strSQL="delete from mst_todo_category where syain_cd = '".$PHP_SYAIN_CD."' and (category_syubetu = ".$strWhere.")";
$objRec = pg_exec($strSQL);
if($objRec == false){
echo("SQL実行に失敗しました(DELETE)");
exit;
}
$strSQL="delete from todo_tbl where sakusei_cd = '".$PHP_SYAIN_CD."' and (category_id = ".$strWhere.")";
$objRec = pg_exec($strSQL);
if($objRec == false){
echo("SQL実行に失敗しました(DELETE)");
exit;
}
exit;
?>