Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<head>
<style>
table, th, td {
    border: 1px solid black;
}
</style>
</head>
<div class="searchTerms index">
        <h4><?php echo __('Search Terms Results for ').($search_term) ; ?></h4>
        <table class="table table-striped">
        <tr><th><?php echo h("Id");?></th>
        <th><?php echo h("Search Term");?></th>
        <th><?php echo h("Created");?>  </th>
        </tr>
        <?php foreach ($searchTerms as $searchTerm): ?>
                <tr>
                        <td><?php echo h($searchTerm['SearchTerm']['id']) ?></td>
                        <td><?php echo h($searchTerm['SearchTerm']['search_term']) ?></td>
                        <td><?php echo h($searchTerm['SearchTerm']['created']) ?></td>
                </tr>
<?php endforeach;?>
        </table>
        
</div>