の値をエコーします。私はそれを試しました:は、私はこのコードを持っているforeachループ
if(!empty($item['criteria'])){
foreach ($item['criteria'] as $item2){
echo '<a href="javascript:toggle(', $item2['id'], ')">'Click</a>
<div id="', $item2['id'], '" style="display: none">', $item2['description'], '</div>';
}
}
}
私はいくつかの兆候に間違いがあると思います。あなたには、いくつかの構文的なミスが一度
あなたがPHP [文字列構文]を学ぶ必要がある(http://php.net/manual/en/language.types.string.php#language.types.string.syntax.single) –