このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
honya/www/shipping/1.php

39 行
2.4 KiB
PHP
Raw Blame 履歴

このファイルには曖昧(ambiguous)なUnicode文字が含まれています

このファイルには、他の文字と見間違える可能性があるUnicode文字が含まれています。 それが意図的なものと考えられる場合は、この警告を無視して構いません。 それらの文字を表示するにはエスケープボタンを使用します。

<form method="post" action="/shipping.php">
<table class="address-form" border="0">
<tr>
<td class="required"><?= $eigo ? 'Name (nickname OK)' : 'お名前(異名OK)'; ?></td>
<td><input type="text" name="name" placeholder="<?= $eigo ? 'Anonymous' : 'アノニマス'; ?>" value="<?= $tmpstore['name'] ?>" /></td>
</tr>
<tr>
<td class="required"><?= $eigo ? 'ZIP Code' : '郵便番号'; ?></td>
<td><input type="text" name="zip" placeholder="100-0001" value="<?= $tmpstore['zip'] ?>" /></td>
</tr>
<tr>
<td class="required"><?= $eigo ? 'State/Province/Prefecture' : '都道府県'; ?></td>
<td><input type="text" name="prefecture" placeholder="<?= $eigo ? 'Tokyo' : '東京都'; ?>" value="<?= $tmpstore['prefecture'] ?>" /></td>
</tr>
<tr>
<td class="required"><?= $eigo ? 'City/Town' : '市区町村'; ?></td>
<td><input type="text" name="city" placeholder="<?= $eigo ? 'Shibuya' : '渋谷区'; ?>" value="<?= $tmpstore['city'] ?>" /></td>
</tr>
<tr>
<td class="required"><?= $eigo ? 'Address 1 (street + number)' : '町名+番地'; ?></td>
<td><input type="text" name="address1" placeholder="<?= $eigo ? 'Ebisu 1-2-3' : '恵比寿丁目2-3'; ?>" value="<?= $tmpstore['address1'] ?>" /></td>
</tr>
<tr>
<td><?= $eigo ? 'Address 2 (optional)' : 'マンション(任意)'; ?></td>
<td><input type="text" name="address2" placeholder="<?= $eigo ? 'Moriya Shrine 200F' : '守谷神社 200階'; ?>" value="<?= $tmpstore['address2'] ?>" /></td>
</tr>
<tr>
<td class="required"><?~ $eigo ? 'Country' : '国'; ?></td>
<td><input type="text" name="country" placeholder="<?= $eigo ? 'Japan' : '日本'; ?>" value="<?= $tmpstore['country'] ?>" /></td>
</tr>
<tr>
<td class="required"><?= $eigo ? 'Email' : 'メール'; ?></td>
<td><input type="text" name="email" placeholder="weareanonymous@weare.legion" value="<?= $tmpstore['email'] ?>" /></td>
</tr>
</table>
<input type="submit" class="nextbutton" name="topayment" value="支払いへ" />
</form>