瀏覽代碼

removed from /create

blog-db
DESKTOP-Q2SHMM6\ernes 2 年之前
父節點
當前提交
289161b893
共有 1 個檔案被更改,包括 0 行新增1 行删除
  1. 0
    1
      public/index.php

+ 0
- 1
public/index.php 查看文件

@@ -81,7 +81,6 @@ $app->map(['GET', 'POST'], '/blog/create', function (Request $request, Response
global $db;
$insertQuery = "INSERT INTO blogs (slug, title, content) VALUES ('" . $data['slug'] . "', '" . $data['title'] . "', '" . $data['content'] ."')";
$db->exec($insertQuery);
$_SESSION['blogs'][] = ["slug" => $data['slug'], "title" => $data['title'], "content" => "Lorem ipsum 4"];
return $response->withHeader('Location', '/')->withStatus(302);
}
} else {

Loading…
取消
儲存