$output = "";
if (isset($_GET['s']) && is_numeric($_GET['s']))
{
require "http://cs.club42.ru/lgsl/lgsl_files/lgsl_details.php";
}
elseif (isset($_GET['s']) && $_GET['s'] == "add")
{
require "http://cs.club42.ru/lgsl/lgsl_files/lgsl_add.php";
}
else
{
require "http://cs.club42.ru/lgsl/lgsl_files/lgsl_list.php";
}
echo $output;
|
|