v0.0.5 Made edit and update

This commit is contained in:
Victor
2021-06-02 13:27:13 +02:00
parent 23a81e1925
commit 636672d8f2
5 changed files with 89 additions and 3 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
require "../../bootstrap.php";
use Backend\Model\Post;
if(isset($_POST['update'])){
$id = $_POST['id'];
$title = $_POST['upTitle'];
$description = $_POST['upDescription'];
$post = Post::query()->find($id)->first();
$post->title = $title;
$post->description = $description;
if(!$post->update()){
echo "Error could not update";
}else{
header("location: ../../Frontend/home.php");
}
}