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 for User ID ').($userId); ?></h4>

        <?php //debug($searchTerms) ?>
        <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>
                        <!-- <td>
                                <?php echo h($searchTerm['SearchTerm']['id']) ?>
                        </td>
                        <td>
                                <?php echo h($searchTerm['SearchTerm']['id']) ?>
                        </td>    -->
                </tr>
<?php endforeach;?>
        </table>
        
</div>