12 lines
102 B
PHP
12 lines
102 B
PHP
|
<?php
|
||
|
|
||
|
class page_handler {
|
||
|
|
||
|
public function handle($input) {
|
||
|
$this->output = "credits";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|