Advertisement
gadjov

posts\index.php

Jul 16th, 2016
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.87 KB | None | 0 0
  1. <main>
  2.     <table>
  3.         <tr>
  4.             <th>ID</th>
  5.             <th>Title</th>
  6.             <th>Content</th>
  7.             <th>Date</th>
  8.             <th>Author</th>
  9.             <th>Action</th>
  10.         </tr>
  11.         <?php foreach ($this->posts as $post) : ?>
  12.             <tr>
  13.                 <td><?= $post['id'] ?></td>
  14.                 <td><?= htmlspecialchars($post['title']) ?></td>
  15.                 <td><?= cutLongText($post['content']) ?></td>
  16.                 <td><?= htmlspecialchars($post['date']) ?></td>
  17.                 <td><?= $post['user_id'] ?></td>
  18.                 <td><a href="<?=APP_ROOT?>/posts/edit/<?=$post['id']?> ">[Edit}></a>
  19.                     <a href="<?=APP_ROOT?>/posts/delete/<?=$post['id']?> ">[Delete]</a> </td>
  20.             </tr>
  21.         <?php endforeach ?>
  22.     </table>
  23.  
  24.     <a href="<?=APP_ROOT?>/posts/create">[Create New]</a>
  25. </main>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement