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