使用PHP和SQLite实现Web套件和CMS

  

CMS后台管理

  

  

  

  

  

  <?php

  // 处理文章的添加

  if ($_SERVER['REQUEST_METHOD'] === 'POST') {

  // 获取用户输入的标题和内容

  $title = $_POST['title'];

  $content = $_POST['content'];

  // 将文章插入数据库

  $stmt = $conn->prepare('INSERT INTO articles (title, content) VALUES (:title, :content)');

  $stmt->bindValue(':title', $title);

  $stmt->bindValue(':content', $content);

  $stmt->execute();

  // 刷新页面

  header('Location: admin.php');

  }

  // 显示已有的文章列表

  $result = $conn->query('SELECT * FROM articles');

  while ($row = $result->fetchArray()) {

  echo '

' . $row['title'] . '

';

  echo '

' . $row['content'] . '

';

  echo '编辑';

  echo '删除';

  }

  ?>