blob: 31deede659d34351b9bccc6411c25f65c9d25e12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?
class Story {
function story($userid, $subject, $abstract, $article, $category, $timestamp) {
$this->userid = $userid;
$this->subject = $subject;
$this->abstract = $abstract;
$this->article = $article;
$this->category = $category;
$this->timestamp = $timestamp;
}
}
?>
|