itskp-odense/Backend/controller/update.php

16 lines
276 B
PHP
Raw Normal View History

2021-06-02 11:27:13 +00:00
<?php
require "../../bootstrap.php";
use Backend\Model\Post;
if(isset($_POST['id'])){
$post = Post::query()->find($_POST['id']);
$post->title = $_POST['upTitle'];
$post->description = $_POST['upDescription'];
2021-06-02 11:27:13 +00:00
if($post->update()){
return 1;
2021-06-02 11:27:13 +00:00
}
}