HOGE.php
1.14 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
<?php
//*****************************************************************************
//*
//* プログラム名:管理者ログイン
//* プログラムID:ADM001.php
//* 機能 :ログイン
//* 作成者 :K.Yoshimura
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
echo "ほげ";
//$database="e-gru_pro_mtc";
//if( !$pg_con=pg_connect("host=localhost dbname=$database user=pgsqladmin password=pgsqladmin") ) {
//if( !$pg_con=pg_connect("host=localhost dbname=$database user=nobody") ) {
// print "Error : connect to ${hostname}<br>";
// exit;
//}
include('./include/smarty.conf');
//$strSQL="SELECT syain_cd,name_kj_sei,name_kj_mei,mail_addr,yubin_no,addr_pref,addr_city, ".
// "addr_banti,addr_apart,tel_no,keitai_no ".
// "FROM syain_tbl ";
//$objRec = pg_exec($strSQL);
//if($objRec==false){
// echo("SQL実行に失敗しました(SELECT)");
// exit;
//}
//for ($intCnt = 0; $intCnt < pg_numrows($objRec) ; $intCnt++){
// $objData = pg_fetch_object($objRec, $intCnt);
// echo $objData->name_kj_sei." ".$objData->name_kj_sei."<hr>";
//}
$o_smarty->display('HOGE.tpl');
?>