You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
318 B

  1. <?php echo $abcd ?><br>
  2. <table class="table">
  3. <tbody>
  4. <?php foreach($list as $dd):?>
  5. <tr>
  6. <td><?=$dd['idx']?></td>
  7. <td><a href="<?=base_url('memo/view/'.$dd['idx'])?>"><?=$dd['title']?></a></td>
  8. <td><?=$dd['regtime']?></td>
  9. </tr>
  10. <?php endforeach;?>
  11. </tbody>
  12. </table>