1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

foreach と type="radio" の共存の仕方

Posted at

foreach (PHP)

<?php
$fruits = ["ぶどう", "みかん", "もも"];

foreach ($fruits as $value) {
    echo $value;
}
?>

####こう表示される

ぶどうみかんもも

type="radio" (HTML)

<input type="radio">

ガッチャンコする

<?php
        $fruits = ["ぶどう", "みかん", "もも"];

foreach ($fruits as $value) { ?>
    <input type="radio">
    <?php echo $value;
}
?>

####こんな感じで表示される

●ぶどう●みかん●もも

##思ったこと
ベースをHTMLにして書いてるからPHPとして埋め込んで書くところをちゃんと指定して区別してやってあげないとね!って感じ

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?