Exemple #1
0
 function create_profile_picture_post()
 {
     // need to require post model
     $model = new Post_Model();
     $x = $model->create(Session::get('id'));
     if ($x == true) {
         echo 'successfuly created';
         header("Location:" . URL . "/post");
         exit;
     } else {
         echo 'error';
     }
     exit;
 }