STnavi 情報館 ver.2.12

F = datas/gekijoinfo.php
2014-11-29 15:42:38 更新
INDEX

$encode = "UTF-8";
$title = "STnavi - 劇場案内";
$thisprog = "gekijoinfo.php";
$br = '
';

include 'functions.inc';
$uid = getparam('uid', '');
$pw = getparam('pw', '');
$uid = checkcookie('uid', $uid);
$pw = checkcookie('pw', $pw);
$t = getparam('t', '');

print '';
print '';
print '';
print '' . $title . '';
print '';
print '';
print '';
print '';
$kubun = checkuser($uid, $pw);
if (!$uid) $uid = 'ゲスト';
print $uid . 'さん ' . $kubun . 'モード';
print '

' . $title . '

';

print linkbutton('top.php', 'トップページ', $uid, $pw);

$dbtbl = 'gekijo';
$db = mysql_connect($dbhost, $dbuser, $dbpass);
if (!$db) die('データベースへの接続に失敗しました。' . mysql_error());
mysql_query('SET NAMES utf8' , $db);
$dbselect = mysql_select_db($dbname, $db);
if (!dbselect) die('データベースの選択に失敗しました。' . mysql_error());

$where = "`gekijo` = '" . $t . "'";
$query = 'SELECT * FROM `' . $dbtbl . '`';
if ($where) $query .= ' WHERE ' . $where;
$result = mysql_query($query);
if (!$result) die('クエリー失敗。' . mysql_error());
$row = mysql_fetch_assoc($result);
$folder = $row['folder'];


$cont = file($folder . '/info.txt');
foreach ($cont as $a) {
if (substr($a, 0, 2) == '//') continue;
if (substr($a, 0, 1) == '*') {
print substr($a, 1, strlen($a) - 1);
} else {
print $a;
print '
';
}
}
print $br . '香盤情報';
print $br . $br;
mysql_close($db);

print '劇場一覧  ';
print '踊り子一覧  ';
print $br . $br;
print linkbutton('kobanjoho.php', '再検索', $uid, $pw);
if ($kubun != 'ゲスト') {
print linkbutton('add-koban.php', '香盤情報追加', $uid, $pw);
}
print '';
print ' ページトップへ';
print '

';

if ($uid == 'ゲスト') include 'login.inc';
print footer($uid, $pw, $thisprog);
if (checkuser($uid, $pw) == '管理者') include 'kanrisha.inc';
print '';
print '';

?>

Copyright ©2013-2025 Libra0977.   All Rights Reserved.   last updated 2014.8/25.
Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)