<?php
if (isset($_GET['lib']) || isset($_POST['lib'])) {
$lib = trim(isset($_POST['lib']) ? $_POST['lib'] : $_GET['lib']);
if (preg_match("/[^a-zA-Z0-9_]/", $lib)) { Header();exit;}}
if ($lib == "")
{ ?><ul>
<li>
<h3>Phoenixgames</h3>
</li></ul><hr>
Votre acces au site du groupes phoenixgames est en cour de creation merci de patienter un moment..... <br>
<META HTTP-EQUIV="refresh" CONTENT="5; URL=http://phoenixgames.org">
</ul>
<? }
else
{
include('module/library/' . $lib . '.php');
}
?>
|