File "corps.php"

Full Path: /home/asmplong/www/ancien-site-2019/corps.php
File size: 418 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");

}



/* CORPS PRESENTATION */


if ($corps == 'p')
{

	include ("presentation.php");

}



/* CORPS CONTACT */


if ($corps == 'c')
{

	include ("contact.php");

}

?>