14 lines
193 B
PHP
14 lines
193 B
PHP
<?php
|
|
class Pages {
|
|
// Properties
|
|
public $page;
|
|
|
|
// Methods
|
|
function set_page($page) {
|
|
$this->page = $page;
|
|
}
|
|
function get_page() {
|
|
return $this->page;
|
|
}
|
|
}
|
|
?>
|