LoginSignup
0
0

More than 3 years have passed since last update.

index.php

Posted at

<?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>




//唐辛子を表示する
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0