head_preview.php
677 Bytes
<?
//*****************************************************************************
//*
//* プログラム名:e-イベント
//* プログラムID:head_preview.php
//* 機能 :イベント表示画面
//* 作成者 :
//*
//*****************************************************************************
header("Content-type: text/html; charset=shift-jis");
include('./include/smarty.conf');
//セッション開始
require_once("./include/session_start.inc");
include("./include/dbcon.inc");
$o_smarty->assign('txtHeader', stripslashes($_POST["txtHeader"]));
$o_smarty->assign('hidtxtHeader', htmlspecialchars(stripslashes($_POST["txtHeader"])));
$o_smarty->display('head_preview.tpl');
?>