データベースに追加されたすべての属性のリストを表示したいのですが、何かを試すたびに機能しません。これをフロントページからのdiv内に表示したいと思います。私はこれをfeatured.tplに挿入しようとしました:
<?php
foreach ($attribute_groups as $attribute_group) {
echo $attribute_group['name'];
print_r($attribute_group);
echo '<select name="listaGrupe">';
foreach ($attribute_groups['attribute'] as $attribute) {
echo '<option value="'.$attribute.'">'.$attribute.'</option>';
}
echo '</select>';
}
?>