Archived
1
0
Fork 0
This repository has been archived on 2020-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
news-script/game.php

16 lines
315 B
PHP

<?php
class Game {
public $url;
public $title;
public $author;
public $description;
public $date;
public function print() {
echo "<li><a href='$this->url'>«".$this->title."»</a> — $this->author";
if ($this->description) {
echo "<br>$this->description";
}
echo "</li>\n";
}
}