-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenv_ami.php
38 lines (30 loc) · 1.27 KB
/
env_ami.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
///////////////////////////////////////////////////////////////////////////////////////////
///Script PHP/MYSQL de gestion de petites annonces développé par Script PAG
///Script PAG tout droits réservé. Utilisation sous licence. http://www.script-pag.com
///////////////////////////////////////////////////////////////////////////////////////////
############################################################
require_once('includes/all_functions.php');
///////////////////////////////////
//Detruire la session
//////////////////////////////////
foreach($_SESSION as $k => $v)
{
if($k != 'connect' && $k != 'email_con' && $k != 'prenom' && $k != 'valid_admin' && $k != 'disc' && $k != 'nb_ann_selection')
unset($_SESSION[$k]);
}
///////////////////////////////////
//Titre, description, mots clés et info de la page
//////////////////////////////////
$title = $language['txt_info_env_ami_title'];
$description = '';
$words = '';
$info_page = $language['txt_info_env_ami_title'];
$texte = $language['txt_info_env_ami'];
///////////////////////////////////
//Inclusion des fonctions html
//////////////////////////////////
htm_header($title, $description, $words);
display_index_text($info_page);
display_text($texte);
htm_footer();