forked from stove/dataset
449 lines
16 KiB
PHP
449 lines
16 KiB
PHP
<?php
|
|
|
|
/* gestion_adherents.php
|
|
* - Récapitulatif des adhérents
|
|
* Copyright (c) 2003 Frédéric Jaqcuot
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
include("includes/config.inc.php");
|
|
include(WEB_ROOT."includes/database.inc.php");
|
|
include(WEB_ROOT."includes/functions.inc.php");
|
|
include(WEB_ROOT."includes/lang.inc.php");
|
|
include(WEB_ROOT."includes/session.inc.php");
|
|
|
|
if ($_SESSION["logged_status"]==0)
|
|
{
|
|
header("location: index.php");
|
|
die();
|
|
}
|
|
if ($_SESSION["admin_status"]==0)
|
|
{
|
|
header("location: voir_adherent.php");
|
|
die();
|
|
}
|
|
|
|
$page = 1;
|
|
if (isset($_GET["page"]))
|
|
$page = $_GET["page"];
|
|
|
|
if (isset($_GET["filtre"]))
|
|
if (is_numeric($_GET["filtre"]))
|
|
$_SESSION["filtre_adh"]=$_GET["filtre"];
|
|
if (! isset($_SESSION["filtre_adh"]))
|
|
$_SESSION["filtre_adh"]='';
|
|
|
|
if (isset($_GET["filtre_adh_2"]))
|
|
if (is_numeric($_GET["filtre_2"]))
|
|
$_SESSION["filtre_adh_2"]=$_GET["filtre_2"];
|
|
if (! isset($_SESSION["filtre_adh_2"]))
|
|
$_SESSION["filtre_adh_2"]='';
|
|
if (isset($_GET["filtre_3"]))
|
|
if (is_numeric($_GET["filtre_3"]))
|
|
$_SESSION["filtre_adh_3"]=$_GET["filtre_3"];
|
|
if (! isset($_SESSION["filtre_adh_3"]))
|
|
$_SESSION["filtre_adh_3"]='';
|
|
|
|
// Tri
|
|
|
|
if (isset($_GET["tri"]))
|
|
if (is_numeric($_GET["tri"]))
|
|
{
|
|
if ($_SESSION["tri_adh"]==$_GET["tri"])
|
|
$_SESSION["tri_adh_sens"]=($_SESSION["tri_adh_sens"]+1)%2;
|
|
else
|
|
{
|
|
$_SESSION["tri_adh"]=$_GET["tri"];
|
|
$_SESSION["tri_adh_sens"]=0;
|
|
}
|
|
}
|
|
|
|
|
|
include("header.php");
|
|
|
|
if (isset($_GET["sup"]))
|
|
{
|
|
if (is_numeric($_GET["sup"]))
|
|
{
|
|
$requetesup = "SELECT nom_adh, prenom_adh FROM ".PREFIX_DB."adherents WHERE id_adh=".$DB->qstr($_GET["sup"]);
|
|
$resultat = $DB->Execute($requetesup);
|
|
if (!$resultat->EOF)
|
|
{
|
|
// supression record adhérent
|
|
$requetesup = "DELETE FROM ".PREFIX_DB."adherents
|
|
WHERE id_adh=".$DB->qstr($_GET["sup"]);
|
|
$DB->Execute($requetesup);
|
|
|
|
// suppression de l'eventuelle photo
|
|
@unlink(WEB_ROOT . "photos/".$id_adh.".jpg");
|
|
@unlink(WEB_ROOT . "photos/".$id_adh.".gif");
|
|
@unlink(WEB_ROOT . "photos/".$id_adh.".jpg");
|
|
@unlink(WEB_ROOT . "photos/tn_".$id_adh.".jpg");
|
|
@unlink(WEB_ROOT . "photos/tn_".$id_adh.".gif");
|
|
@unlink(WEB_ROOT . "photos/tn_".$id_adh.".jpg");
|
|
|
|
// suppression records cotisations
|
|
$requetesup = "DELETE FROM ".PREFIX_DB."cotisations
|
|
WHERE id_adh=" . $DB->qstr($_GET["sup"]);
|
|
$DB->Execute($requetesup);
|
|
dblog(_T("Suppression de la fiche adhérent (et cotisations) :")." ".strtoupper($resultat->fields[0])." ".$resultat->fields[1], $requetesup);
|
|
}
|
|
$resultat->Close();
|
|
}
|
|
}
|
|
|
|
?>
|
|
<H1 class="titre"><?php echo _T("Gestion des adhérents"); ?></H1>
|
|
<?php
|
|
// selection des adherents et application filtre / tri
|
|
|
|
$requete[0] = "SELECT id_adh, nom_adh, prenom_adh, pseudo_adh, activite_adh,
|
|
libelle_statut, bool_exempt_adh, titre_adh, email_adh, bool_admin_adh, date_echeance
|
|
FROM ".PREFIX_DB."adherents, ".PREFIX_DB."statuts
|
|
WHERE ".PREFIX_DB."adherents.id_statut=".PREFIX_DB."statuts.id_statut ";
|
|
$requete[1] = "SELECT count(id_adh)
|
|
FROM ".PREFIX_DB."adherents
|
|
WHERE 1=1 ";
|
|
|
|
// filtre d'affichage des adherents activés/desactivés
|
|
if ($_SESSION["filtre_adh_2"]=="1")
|
|
{
|
|
$requete[0] .= "AND ".PREFIX_DB."adherents.activite_adh='1' ";
|
|
$requete[1] .= "AND ".PREFIX_DB."adherents.activite_adh='1' ";
|
|
}
|
|
elseif ($_SESSION["filtre_adh_2"]=="2")
|
|
{
|
|
$requete[0] .= "AND ".PREFIX_DB."adherents.activite_adh='0' ";
|
|
$requete[1] .= "AND ".PREFIX_DB."adherents.activite_adh='0' ";
|
|
}
|
|
// filtre par panier
|
|
if ($_SESSION["filtre_adh_3"]=="1")
|
|
{
|
|
$requete[0] .= "AND ".PREFIX_DB."adherents.panier_adh != '-1' ";
|
|
$requete[1] .= "AND ".PREFIX_DB."adherents.panier_adh != '-1' ";
|
|
}
|
|
elseif ($_SESSION["filtre_adh_3"]=="2")
|
|
{
|
|
$requete[0] .= "AND ".PREFIX_DB."adherents.pain_adh != '0' ";
|
|
$requete[1] .= "AND ".PREFIX_DB."adherents.pain_adh != '0' ";
|
|
}
|
|
elseif ($_SESSION["filtre_adh_3"]=="3")
|
|
{
|
|
$requete[0] .= "AND ".PREFIX_DB."adherents.volaille_adh != '0' ";
|
|
$requete[1] .= "AND ".PREFIX_DB."adherents.volaille_adh != '0' ";
|
|
}
|
|
elseif ($_SESSION["filtre_adh_3"]=="4")
|
|
{
|
|
$requete[0] .= "AND ".PREFIX_DB."adherents.boeuf_adh != '0' ";
|
|
$requete[1] .= "AND ".PREFIX_DB."adherents.boeuf_adh != '0' ";
|
|
}
|
|
elseif ($_SESSION["filtre_adh_3"]=="5")
|
|
{
|
|
$requete[0] .= "AND ".PREFIX_DB."adherents.veau_adh != '0' ";
|
|
$requete[1] .= "AND ".PREFIX_DB."adherents.veau_adh != '0' ";
|
|
}
|
|
elseif ($_SESSION["filtre_adh_3"]=="6")
|
|
{
|
|
$requete[0] .= "AND ".PREFIX_DB."adherents.cochon_adh != '0' ";
|
|
$requete[1] .= "AND ".PREFIX_DB."adherents.cochon_adh != '0' ";
|
|
}
|
|
elseif ($_SESSION["filtre_adh_3"]=="7")
|
|
{
|
|
$requete[0] .= "AND ".PREFIX_DB."adherents.farine_adh != '0' ";
|
|
$requete[1] .= "AND ".PREFIX_DB."adherents.farine_adh != '0' ";
|
|
}
|
|
elseif ($_SESSION["filtre_adh_3"]=="8")
|
|
{
|
|
$requete[0] .= "AND ".PREFIX_DB."adherents.chevre_adh != '0' ";
|
|
$requete[1] .= "AND ".PREFIX_DB."adherents.chevre_adh != '0' ";
|
|
}
|
|
// filtre d'affichage des adherents retardataires
|
|
if ($_SESSION["filtre_adh"]=="2")
|
|
{
|
|
$requete[0] .= "AND date_echeance < ".$DB->DBDate(time())." ";
|
|
$requete[1] .= "AND date_echeance < ".$DB->DBDate(time())." ";
|
|
}
|
|
|
|
// filtre d'affichage des adherents à jour
|
|
if ($_SESSION["filtre_adh"]=="3")
|
|
{
|
|
$requete[0] .= "AND (date_echeance > ".$DB->DBDate(time())." OR bool_exempt_adh='1') ";
|
|
$requete[1] .= "AND (date_echeance > ".$DB->DBDate(time())." OR bool_exempt_adh='1') ";
|
|
}
|
|
|
|
// filtre d'affichage des adherents bientot a echeance
|
|
if ($_SESSION["filtre_adh"]=="1")
|
|
{
|
|
$requete[0] .= "AND date_echeance > ".$DB->DBDate(time())."
|
|
AND date_echeance < ".$DB->OffsetDate(30)." ";
|
|
$requete[1] .= "AND date_echeance > ".$DB->DBDate(time())."
|
|
AND date_echeance < ".$DB->OffsetDate(30)." ";
|
|
}
|
|
|
|
// phase de tri
|
|
|
|
if ($_SESSION["tri_adh_sens"]=="0")
|
|
$tri_adh_sens_txt="ASC";
|
|
else
|
|
$tri_adh_sens_txt="DESC";
|
|
|
|
$requete[0] .= "ORDER BY ";
|
|
|
|
// tri par pseudo
|
|
if ($_SESSION["tri_adh"]=="1")
|
|
$requete[0] .= "pseudo_adh ".$tri_adh_sens_txt.",";
|
|
|
|
// tri par statut
|
|
elseif ($_SESSION["tri_adh"]=="2")
|
|
$requete[0] .= "priorite_statut ".$tri_adh_sens_txt.",";
|
|
|
|
// tri par echeance
|
|
elseif ($_SESSION["tri_adh"]=="3")
|
|
$requete[0] .= "bool_exempt_adh ".$tri_adh_sens_txt.", date_echeance ".$tri_adh_sens_txt.",";
|
|
|
|
// defaut : tri par nom, prenom
|
|
$requete[0] .= "nom_adh ".$tri_adh_sens_txt.", prenom_adh ".$tri_adh_sens_txt;
|
|
$resultat = $DB->SelectLimit($requete[0],PREF_NUMROWS,($page-1)*PREF_NUMROWS);
|
|
$nbadh = $DB->Execute($requete[1]);
|
|
|
|
if ($nbadh->fields[0]%PREF_NUMROWS==0)
|
|
$nbpages = intval($nbadh->fields[0]/PREF_NUMROWS);
|
|
else
|
|
$nbpages = intval($nbadh->fields[0]/PREF_NUMROWS)+1;
|
|
$pagestring = "";
|
|
if ($nbpages==0)
|
|
$pagestring = "<b>1</b>";
|
|
else for ($i=1;$i<=$nbpages;$i++)
|
|
{
|
|
if ($i!=$page)
|
|
$pagestring .= "<A href=\"gestion_adherents.php?page=".$i."\">".$i."</A> ";
|
|
else
|
|
$pagestring .= $i." ";
|
|
}
|
|
?>
|
|
<DIV id="listfilter">
|
|
<FORM action="gestion_adherents.php" method="get" name="filtre">
|
|
<?php echo _T("Afficher :"); ?>
|
|
<SELECT name="filtre" onChange="form.submit()">
|
|
<OPTION value="0"<?php isSelected("0",$_SESSION["filtre_adh"]) ?>><?php echo _T("Tous les adhérents"); ?></OPTION>
|
|
<OPTION value="3"<?php isSelected("3",$_SESSION["filtre_adh"]) ?>><?php echo _T("Les adhérents à jour"); ?></OPTION>
|
|
<OPTION value="1"<?php isSelected("1",$_SESSION["filtre_adh"]) ?>><?php echo _T("Les échéances proches"); ?></OPTION>
|
|
<OPTION value="2"<?php isSelected("2",$_SESSION["filtre_adh"]) ?>><?php echo _T("Les retardataires"); ?></OPTION>
|
|
</SELECT>
|
|
<SELECT name="filtre_2" onChange="form.submit()">
|
|
<OPTION value="0"<?php isSelected("0",$_SESSION["filtre_adh_2"]) ?>><?php echo _T("Tous les comptes"); ?></OPTION>
|
|
<OPTION value="1"<?php isSelected("1",$_SESSION["filtre_adh_2"]) ?>><?php echo _T("Comptes actifs"); ?></OPTION>
|
|
<OPTION value="2"<?php isSelected("2",$_SESSION["filtre_adh_2"]) ?>><?php echo _T("Comptes désactivés"); ?></OPTION>
|
|
</SELECT>
|
|
<SELECT name="filtre_3" onChange="form.submit()">
|
|
<OPTION value="0"<?php isSelected("0",$_SESSION["filtre_adh_3"]) ?>><?php echo _T("Tous les paniers"); ?></OPTION>
|
|
<OPTION value="1"<?php isSelected("1",$_SESSION["filtre_adh_3"]) ?>><?php echo _T("Legumes"); ?></OPTION>
|
|
<OPTION value="2"<?php isSelected("2",$_SESSION["filtre_adh_3"]) ?>><?php echo _T("Pain"); ?></OPTION>
|
|
<OPTION value="3"<?php isSelected("3",$_SESSION["filtre_adh_3"]) ?>><?php echo _T("Volaille"); ?></OPTION>
|
|
<OPTION value="4"<?php isSelected("4",$_SESSION["filtre_adh_3"]) ?>><?php echo _T("Boeuf"); ?></OPTION>
|
|
<OPTION value="5"<?php isSelected("4",$_SESSION["filtre_adh_3"]) ?>><?php echo _T("Veau"); ?></OPTION>
|
|
<OPTION value="6"<?php isSelected("4",$_SESSION["filtre_adh_3"]) ?>><?php echo _T("Cochon"); ?></OPTION>
|
|
<OPTION value="7"<?php isSelected("5",$_SESSION["filtre_adh_3"]) ?>><?php echo _T("Farine-Huile"); ?></OPTION>
|
|
<OPTION value="8"<?php isSelected("6",$_SESSION["filtre_adh_3"]) ?>><?php echo _T("Fromage de chèvre"); ?></OPTION>
|
|
</SELECT>
|
|
<INPUT type="submit" value="<?php echo _T("Filtrer"); ?>">
|
|
</FORM>
|
|
</DIV>
|
|
<TABLE id="infoline" width="100%">
|
|
<TR>
|
|
<TD class="left"><?php echo $nbadh->fields[0]." "; if ($nbadh->fields[0]!=1) echo _T("adhérents"); else echo _T("adhérent"); ?></TD>
|
|
<TD class="right"><?php echo _T("Pages :"); ?> <SPAN class="pagelink"><?php echo $pagestring; ?></SPAN></TD>
|
|
</TR>
|
|
</TABLE>
|
|
<TABLE width="100%">
|
|
<TR>
|
|
<TH width="15" class="listing">#</TH>
|
|
<TH width="250" class="listing left">
|
|
<A href="gestion_adherents.php?tri=0" class="listing"><?php echo _T("Nom"); ?></A>
|
|
<?php
|
|
if ($_SESSION["tri_adh"]=="0")
|
|
{
|
|
if ($_SESSION["tri_adh_sens"]=="0")
|
|
$img_sens = "asc.png";
|
|
else
|
|
$img_sens = "desc.png";
|
|
}
|
|
else
|
|
$img_sens = "icon-empty.png";
|
|
?>
|
|
<IMG src="images/<?php echo $img_sens; ?>" width="7" height="7" alt="">
|
|
</TH>
|
|
<TH class="listing left" nowrap>
|
|
<A href="gestion_adherents.php?tri=1" class="listing"><?php echo _T("Pseudo"); ?></A>
|
|
<?php
|
|
if ($_SESSION["tri_adh"]=="1")
|
|
{
|
|
if ($_SESSION["tri_adh_sens"]=="0")
|
|
$img_sens = "asc.png";
|
|
else
|
|
$img_sens = "desc.png";
|
|
}
|
|
else
|
|
$img_sens = "icon-empty.png";
|
|
?>
|
|
<IMG src="images/<?php echo $img_sens; ?>" width="7" height="7" alt="">
|
|
</TH>
|
|
<TH class="listing left">
|
|
<A href="gestion_adherents.php?tri=2" class="listing"><?php echo _T("Statut"); ?></A>
|
|
<?php
|
|
if ($_SESSION["tri_adh"]=="2")
|
|
{
|
|
if ($_SESSION["tri_adh_sens"]=="0")
|
|
$img_sens = "asc.png";
|
|
else
|
|
$img_sens = "desc.png";
|
|
}
|
|
else
|
|
$img_sens = "icon-empty.png";
|
|
?>
|
|
<IMG src="images/<?php echo $img_sens; ?>" width="7" height="7" alt="">
|
|
</TH>
|
|
<TH class="listing left">
|
|
<A href="gestion_adherents.php?tri=3" class="listing"><?php echo _T("Etat cotisations"); ?></A>
|
|
<?php
|
|
if ($_SESSION["tri_adh"]=="3")
|
|
{
|
|
if ($_SESSION["tri_adh_sens"]=="0")
|
|
$img_sens = "asc.png";
|
|
else
|
|
$img_sens = "desc.png";
|
|
}
|
|
else
|
|
$img_sens = "icon-empty.png";
|
|
?>
|
|
<IMG src="images/<?php echo $img_sens; ?>" width="7" height="7" alt="">
|
|
</TH>
|
|
<TH width="55" class="listing"><?php echo _T("Actions"); ?></TH>
|
|
</TR>
|
|
<?php
|
|
$compteur = 1+($page-1)*PREF_NUMROWS;
|
|
if ($resultat->EOF)
|
|
{
|
|
?>
|
|
<TR><TD colspan="6" class="emptylist"><?php echo _T("aucun adhérent"); ?></TD></TR>
|
|
<?php
|
|
}
|
|
else while (!$resultat->EOF)
|
|
{
|
|
// définition CSS pour adherent désactivé
|
|
if ($resultat->fields[4]=="1")
|
|
$row_class = "actif";
|
|
else
|
|
$row_class = "inactif";
|
|
|
|
// temps d'adhésion
|
|
if($resultat->fields[6])
|
|
{
|
|
$statut_cotis = _T("Exempt de cotisation");
|
|
$row_class .= " cotis-exempt";
|
|
}
|
|
else
|
|
{
|
|
if ($resultat->fields[10]=="")
|
|
{
|
|
$statut_cotis = _T("N'a jamais cotisé");
|
|
$row_class .= " cotis-never";
|
|
}
|
|
else
|
|
{
|
|
$date_fin = preg_split("~-~",$resultat->fields[10]);
|
|
$ts_date_fin = mktime(0,0,0,$date_fin[1],$date_fin[2],$date_fin[0]);
|
|
$aujourdhui = time();
|
|
|
|
$difference = intval(($ts_date_fin - $aujourdhui)/(3600*24));
|
|
if ($difference==0)
|
|
{
|
|
$statut_cotis = _T("Dernier jour !");
|
|
$row_class .= " cotis-lastday";
|
|
}
|
|
elseif ($difference<0)
|
|
{
|
|
$statut_cotis = _T("En retard de ").-$difference." "._T("jours")." ("._T("depuis le")." ".$date_fin[2]."/".$date_fin[1]."/".$date_fin[0].")";
|
|
$row_class .= " cotis-late";
|
|
}
|
|
else
|
|
{
|
|
if ($difference!=1)
|
|
$statut_cotis = $difference." "._T("jours restants")." ("._T("fin le")." ".$date_fin[2]."/".$date_fin[1]."/".$date_fin[0].")";
|
|
else
|
|
$statut_cotis = $difference." "._T("jour restant")." ("._T("fin le")." ".$date_fin[2]."/".$date_fin[1]."/".$date_fin[0].")";
|
|
if ($difference < 30)
|
|
$row_class .= " cotis-soon";
|
|
else
|
|
$row_class .= " cotis-ok";
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
<TR>
|
|
<TD width="15" class="<?php echo $row_class ?>"><?php echo $compteur ?></TD>
|
|
<TD class="<?php echo $row_class ?>" nowrap>
|
|
<?php
|
|
if ($resultat->fields[7]=="1") {
|
|
?>
|
|
<IMG src="images/icon-male.png" Alt="<?php echo _T("[H]"); ?>" align="middle" width="10" height="12">
|
|
<?php
|
|
} else {
|
|
?>
|
|
<IMG src="images/icon-female.png" Alt="<?php echo _T("[F]"); ?>" align="middle" width="9" height="12">
|
|
<?php
|
|
}
|
|
if ($resultat->fields[8]!="") {
|
|
?>
|
|
<A href="mailto:<?php echo $resultat->fields[8] ?>"><IMG src="images/icon-mail.png" Alt="<?php echo _T("[Mail]"); ?>" align="middle" border="0" width="14" height="10"></A>
|
|
<?php
|
|
} else {
|
|
?>
|
|
<IMG src="images/icon-empty.png" Alt="" align="middle" border="0" width="14" height="10">
|
|
<?php
|
|
}
|
|
if ($resultat->fields[9]=="1") {
|
|
?>
|
|
<IMG src="images/icon-star.png" Alt="<?php echo _T("[admin]"); ?>" align="middle" width="12" height="13">
|
|
<?php
|
|
} else {
|
|
?>
|
|
<IMG src="images/icon-empty.png" Alt="" align="middle" width="12" height="13">
|
|
<?php
|
|
}
|
|
?>
|
|
<A href="voir_adherent.php?id_adh=<?php echo $resultat->fields["id_adh"] ?>"><?php echo htmlentities(strtoupper($resultat->fields[1]),ENT_QUOTES)." ".htmlentities($resultat->fields[2], ENT_QUOTES) ?></A>
|
|
</TD>
|
|
<TD class="<?php echo $row_class ?>" nowrap><?php echo htmlentities($resultat->fields[3], ENT_QUOTES) ?></TD>
|
|
<TD class="<?php echo $row_class ?>" nowrap><?php echo _T($resultat->fields[5]) ?></TD>
|
|
<TD class="<?php echo $row_class ?>" nowrap><?php echo $statut_cotis ?></TD>
|
|
<TD class="<?php echo $row_class ?> center">
|
|
<A href="ajouter_adherent.php?id_adh=<?php echo $resultat->fields[0] ?>"><IMG src="images/icon-edit.png" alt="<?php echo _T("[mod]"); ?>" border="0" width="12" height="13"></A>
|
|
<A href="gestion_contributions.php?id_adh=<?php echo $resultat->fields[0] ?>"><IMG src="images/icon-money.png" alt="<?php echo _T("[$]"); ?>" border="0" width="13" height="13"></A>
|
|
<A onClick="return confirm('<?php echo str_replace("\n","\\n",addslashes(_T("Voulez-vous vraiment supprimer cet adhérent de la base, ceci supprimera aussi l'historique de ses cotisations. Pour éviter cela vous pouvez simplement désactiver le compte.\n\nVoulez-vous tout de même supprimer cet adhérent ?"))); ?>')" href="gestion_adherents.php?sup=<?php echo $resultat->fields[0] ?>"><IMG src="images/icon-trash.png" alt="<?php echo _T("[sup]"); ?>" border="0" width="11" height="13"></A>
|
|
</TD>
|
|
</TR>
|
|
<?php
|
|
$compteur++;
|
|
$resultat->MoveNext();
|
|
}
|
|
$resultat->Close();
|
|
?>
|
|
</TABLE>
|
|
<DIV id="infoline2" class="right"><?php echo _T("Pages :"); ?> <SPAN class="pagelink"><?php echo $pagestring; ?></SPAN></DIV>
|
|
<?php
|
|
include("footer.php");
|
|
?>
|