asimryu

pdf test -newsview.php

Jun 2nd, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. require("dbcon.php");
  3. $page = 0;
  4. if( isset($_GET['page']) ) {
  5. $page = (int)$_GET['page'];
  6. }
  7. $listnum = 1;
  8. $sql = "select * from news limit $page, $listnum";
  9. if( $rs = $db->query($sql) ) {
  10. if( $row = $rs->fetch() ) {
  11. echo "<div><h1>" . $row['id'] . ")" . $row['title'] . "</h1>";
  12. echo "<p><button class='del'>삭제</button></p>";
  13. echo "<p>" . $row['content'] . "</p>";
  14. echo "<p>" . $row['date'] . "</p></div>";
  15. }
  16. }
  17. ?>
Add Comment
Please, Sign In to add comment