File "corps.php"
Full Path: /home/asmplong/www/ancien-site-2019/poc/corps.php
File size: 257 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/* RECUP VARIABLES */
if(!empty($_GET['t']))
{
$corps = $_GET['t'];
}
else
{
$corps='g';
}
/* CORPS ACCUEIL */
if ($corps == 'g')
{
include ("accueil.php");
}
/* CORPS ACTUALITE */
if ($corps == 'a')
{
include ("actu.php");
}
?>