6 lines
124 B
PHP
6 lines
124 B
PHP
<?php
|
|
if (isset($_GET['section']) and isset($links[$_GET['section']])) {
|
|
include $links[$_GET['section']];
|
|
} else {
|
|
}
|
|
?>
|