Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <h2>PHP-2. Homework 2</h2>
  2. <h4>News</h4>
  3. <a href="/index.php">Перейти на страницу новостей</a>
  4. <hr>
  5. <?php foreach ($news as $article): ?>
  6. <article>
  7. <h3><?php echo $article->title; ?></h3>
  8. <p><?php echo $article->content; ?></p>
  9. <form action="/edit.admin.php" method="post">
  10. <input type="hidden" name="article_id" value="<?php echo $article->id; ?>">
  11. <button type="submit">Редактировать</button>
  12. </form>
  13. <form action="/delete.admin.php" method="post">
  14. <input type="hidden" name="article_id" value="<?php echo $article->id; ?>">
  15. <button type="submit">Удалить</button>
  16. </form>
  17. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement