<?php $items = array(array('title' => 'title', 'image' => 'image', 'link' => 'link')); $template = ' <div class="card"> <h1>{{CARD_TITLE}}</h1> {{CARD_IMAGE}} {{CARD_LINK}} </div> '; foreach ($items as $item) { echo strtr($template, array('{{CARD_TITLE}}' => $item['title'], '{{CARD_IMAGE}}' => $item['image'], '{{CARD_LINK}}' => $item['link'])); }
You have javascript disabled. You will not be able to edit any code.