LoginSignup
0
0

More than 1 year has passed since last update.

php基本構文『コロン構文』

Last updated at Posted at 2023-03-18

HTML内に記述する時に使いやすい

<?php
    $products = ['デニム', 'Tシャツ', 'スカート',];
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./style.css">
</head>
<body>
    <!-- コロン「:」構文 
    PHP文法の中でHTMLを使いたい時 -->
    <?php foreach($products as $product): ?>
        <div>
            <h1>商品名</h1>
            <p><?php echo $product; ?></p>
        </div>
    <!-- endで終わる -->
    <?php endforeach; ?>
</body>
</html>

実際に表示すると

スクリーンショット 2023-03-18 23.47.27.png
CSSはこちら
スクリーンショット 2023-03-18 23.48.51.png

0
0
1

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