WML110.php 873 Bytes
<?php 
//*****************************************************************************
//* 
//* プログラム名:Webメールボックス一覧画面
//* プログラムID:WML110.php
//* 機能        :
//* 作成者      :
//* 
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
include('./include/smarty.conf');

//**** DB接続 ****//
$strDBinc="include/dbcon.inc";
include($strDBinc);

//未読メッセージ取得
$strSQL="Select mail_id from mail_get_tbl Where syain_cd='$PHP_SYAIN_CD' and kind_flg=0 and del_flg=0";
$objMailBox = pg_exec($strSQL);
if($objMailBox==false){
		echo("SQL実行に失敗しました(SELECT)");
		exit;
}
$MailBoxCnt=pg_numrows($objMailBox);

$o_smarty->assign('MailBoxCnt',$MailBoxCnt);
$o_smarty->display('WML110.tpl');

?>