itskp-odense/Backend/controller/updateUser.php

16 lines
276 B
PHP
Raw Normal View History

2021-06-09 08:41:21 +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'];
if($post->update()){
return 1;
}
}