Newer
Older
hello-programmer-world / public / sample / php / loop_output.html
<!DOCTYPE html>
<!-- パターン1: 波括弧を使う -->
<strong>すきなもの</strong>
<ul>
    <li>自由</li>
    <li>お金</li>
    <li>世界平和</li>
</ul>

<!-- パターン2: コロンを使う -->
<strong>嫌いなもの</strong>
<ul>
    <li>不自由</li>
    <li>しいたけ</li>
</ul>

<!-- パターン3: タグごと出力する -->
<strong>興味がないもの</strong>
<ul>
    <li>恋愛</li>
</ul>