index.php
<?php
require_once('data.php');
require_once('menu.php');
?>
<!DOCTYPE html>
Café Progate
Café Progate
メニュー<?php echo Menu::getCount() ?>品
<?php foreach ($menus as $menu): ?>
<?php echo $menu->getName() ?>
<?php if ($menu instanceof Drink): ?>
<?php echo $menu->getType() ?>
<?php else: ?>
<!-- for文を用いて、spicinessプロパティの数だけ繰り返し処理を行ってください -->
<?php for($i = 0; $i< $menu->getSpiciness();$i++): ?>
<?php endfor ?>
<?php endif ?>
<p class="price">¥<?php echo $menu->getTaxIncludedPrice() ?>(税込)</p>
<input type="text" value="0" name="<?php echo $menu->getName() ?>">
<span>個</span>
</div>
<?php endforeach ?>
</div>
<input type="submit" value="注文する">
</form>
//唐辛子を表示する
<?php foreach ($menus as $menu): ?>
<?php echo $menu->getName() ?>
<?php if ($menu instanceof Drink): ?>
<?php echo $menu->getType() ?>
<?php else: ?>
<!-- for文を用いて、spicinessプロパティの数だけ繰り返し処理を行ってください -->
<?php for($i = 0; $i< $menu->getSpiciness();$i++): ?>
<?php endfor ?>
<?php endif ?>
<p class="price">¥<?php echo $menu->getTaxIncludedPrice() ?>(税込)</p>
<input type="text" value="0" name="<?php echo $menu->getName() ?>">
<span>個</span>
</div>
<?php endforeach ?>
</div>
<input type="submit" value="注文する">
</form>
//唐辛子を表示する
Author And Source
この問題について(index.php), 我々は、より多くの情報をここで見つけました https://qiita.com/toukanno/items/662fa23d213215cf6492著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .