head_delete.php 707 Bytes
<?
//*****************************************************************************
//* 
//* プログラム名:e-イベント
//* プログラムID:head_input.php
//* 機能        :イベント表示画面
//* 作成者      :
//* 
//*****************************************************************************
header("Content-type: text/html; charset=shift-jis");

include('./include/smarty.conf');

//セッション開始
require_once("./include/session_start.inc");

include("./include/dbcon.inc");

$strSQL = "DELETE FROM group_header_tbl WHERE group_cd = '".$_SESSION["PHP_CAL_CODE"]."'";
$objRec = pg_exec($strSQL);
if($objRec==false){
		echo("SQL実行に失敗しました(DELETE)");
		exit;
}


header("Location:./head_make.php");

?>