Ejemplo n.º 1
0
<?php

$id = $_POST['id'];
$title = $_POST['title'];
BlogPost::ROW($id)->setTitle($title);
Ejemplo n.º 2
0
 public function getPost()
 {
     if ($this->row['Post'] == 0) {
         return null;
     } else {
         return BlogPost::ROW($this->row['Post']);
     }
 }