コード例 #1
0
ファイル: index.php プロジェクト: ygres/sblog
 function editPost()
 {
     system::setParam("page", "editPage");
     $id = intval($_GET["contentID"]);
     $fill = $_POST;
     if ($_POST) {
         video::updatePost($_POST, $id);
     }
     video::getPost($id);
 }