Files
ugc/index.php
2015-08-12 23:44:51 +02:00

23 lines
425 B
PHP
Executable File

<?php
require_once 'inc/functions.php';
$sAction = isset($_REQUEST['a'])?$_REQUEST['a']:'';
$asData = isset($_REQUEST['data'])?$_REQUEST['data']:array();
$sType = isset($_REQUEST['type'])?$_REQUEST['type']:'html';
switch($sAction)
{
case 'get_page':
$sResult = getPage($asData['path'], $asData['vars']);
break;
default:
$sResult = file_get_contents('masks/index.html');
}
setPageMime($sType);
echo $sResult;
?>