TDL902.php 1.07 KB
<?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;
?>