このコミットが含まれているのは:
守矢諏訪子 2022-05-08 16:13:58 +09:00
コミット 04e47acc50
2個のファイルの変更3行の追加3行の削除

ファイルの表示

@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<title><?php echo $eigo ? STORE_NAME_EN : STORE_NAME_JA; ?></title>
<title><?php echo STORE_NAME; ?></title>
<?php
if (!empty($styles)) {
foreach ($styles as $s) {
@ -21,7 +21,7 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<h1><?php echo $eigo ? STORE_NAME_EN : STORE_NAME_JA; ?></h1>
<h1><?php echo STORE_NAME; ?></h1>
<div class="container">
<form method="post" action="/">
<input class="langchange" type="submit" name="langchange" value="<?php echo $eigo ? '日本語に戻る' : 'Switch to English'; ?>" />

ファイルの表示

@ -1,6 +1,5 @@
<?php
include('include/god.php');
$item = 'sasa';
$pagetitle = ($eigo ? 'Item: ' : '商品:').$item;
$styles[] = 'item';
$books = [];
@ -22,6 +21,7 @@
}
$booklang = $language == 'en' ? ($eigo ? 'English' : '英語') : ($eigo ? 'Japanese' : '日本語');
$item = $name.' ('.$booklang.')';
mysqli_close($sql);
?>