File: /home/f/r/e/frenchy/refonte2023/wordpress/evenements/index2.php
<?php
require_once("_mysql.php");
setlocale (LC_TIME, 'fr_FR.utf8','fra');
$id_evenement = '';
if (isset($_GET['id_evenement']) || isset($_GET['id']))
{
if (isset($_GET['id_evenement']))
{
$id_evenement = $_GET['id_evenement'];
}
else
{
$id_evenement = $_GET['id'];
}
$req = mysqli_query($link_bdd,"select * from evenements where id_evenement = ".$id_evenement." and date_debut_evenement <= '".date("Y-m-d")."' and date_fin_evenement >= '".date("Y-m-d")."'");
if (mysqli_num_rows($req) != 0)
{
$line = mysqli_fetch_array($req);
}
else
{
die ("Aucun evenement ne correspond");
}
}
else
{
die ("Aucun evenement ne correspond");
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html;charset=UTF-8" http-equiv="content-type"/>
<title>Evenement <?=$line['libelle_evenement']?></title>
<script type="text/javascript">
function verification()
{
if(document.frmSubmit.email_contact.value == "")
{
alert("Merci d'indiquer votre adresse e-mail");
document.frmSubmit.email_contact.focus();
return false;
}
if(document.frmSubmit.email_contact.value.indexOf('@') == -1)
{
alert("Adresse e-mail invalide");
document.frmSubmit.email_contact.focus();
return false;
}
if(document.frmSubmit.civilite_contact.value == "")
{
alert("Merci d'indiquer votre Civilité");
document.frmSubmit.civilite_contact.focus();
return false;
}
if(document.frmSubmit.prenom_contact.value == "")
{
alert("Merci d'indiquer votre Prénom");
document.frmSubmit.prenom_contact.focus();
return false;
}
if(document.frmSubmit.nom_contact.value == "")
{
alert("Merci d'indiquer votre Nom");
document.frmSubmit.nom_contact.focus();
return false;
}
if(document.frmSubmit.telephone_contact.value == "")
{
alert("Merci d'indiquer votre Téléphone");
document.frmSubmit.telephone_contact.focus();
return false;
}
/*if(document.frmSubmit.entreprise_contact.value == "")
{
alert("Merci d'indiquer votre Entreprise");
document.frmSubmit.entreprise_contact.focus();
return false;
}*/
if(document.frmSubmit.fonction_contact.value == "" && !document.frmSubmit.autre_contact.checked)
{
alert("Merci d'indiquer votre fonction dans l'entreprise");
document.frmSubmit.fonction_contact.focus();
return false;
}
if(document.frmSubmit.adresse_entreprise_contact.value == "")
{
alert("Merci d'indiquer l'adresse de votre entreprise");
document.frmSubmit.adresse_entreprise_contact.focus();
return false;
}
if(document.frmSubmit.code_postal_entreprise_contact.value == "")
{
alert("Merci d'indiquer le code postal de votre entreprise");
document.frmSubmit.code_postal_entreprise_contact.focus();
return false;
}
if(document.frmSubmit.ville_entreprise_contact.value == "")
{
alert("Merci d'indiquer la ville de votre entreprise");
document.frmSubmit.ville_entreprise_contact.focus();
return false;
}
if(document.frmSubmit.inscription_contact && document.frmSubmit.inscription_contact.selectedIndex == 0 && document.frmSubmit.membre_contact[1].checked)
{
alert("Veuillez choisir une formule d'adhésion si vous n'êtes pas membre.");
document.frmSubmit.inscription_contact.focus();
return false;
}
return true
}
function toutcalc()
{
if (document.getElementById('checkbox_don').checked && (document.getElementById('checkbox_diner').checked))
{
document.getElementById('checkbox_don').checked = false;
don_sup = document.getElementById('don_sup').value = '';
alert ("Ces choix sont incompatibles");
}
var radio_journee = 0;
var journee_diner = 0;
var diner_sup = 0;
if (document.getElementById('diner_sup').value != '' && !isNaN(document.getElementById('diner_sup').value))
{
var diner_sup = document.getElementById('diner_sup').value;
if (!document.frmSubmit.radio_diner[0].checked && !document.frmSubmit.radio_diner[1].checked && !document.frmSubmit.radio_diner[2].checked && !document.frmSubmit.radio_diner[3].checked && !document.frmSubmit.radio_diner[4].checked)
{
document.frmSubmit.radio_diner[0].checked = true;
}
}
if (document.frmSubmit.radio_diner[0].checked && !isNaN(document.getElementById('nombre500personneindividuel').value)) { journee_diner = 500 * parseInt(document.getElementById('nombre500personneindividuel').value); document.getElementById('checkbox_diner').checked = true; document.getElementById('nombretotal500personneindividuel').value = journee_diner; document.getElementById('nombretotal750personneindividuel').value = 0; document.getElementById('nombretotal750personnecouple').value = 0; document.getElementById('nombretotal1000personne').value = 0; document.getElementById('nombretotal5000personne').value = 0; document.getElementById('hnombretotal500personneindividuel').value = journee_diner; document.getElementById('hnombretotal750personneindividuel').value = 0; document.getElementById('hnombretotal750personnecouple').value = 0; document.getElementById('hnombretotal1000personne').value = 0; document.getElementById('hnombretotal5000personne').value = 0;}
if (document.frmSubmit.radio_diner[1].checked && !isNaN(document.getElementById('nombre750personnecouple').value)) { journee_diner = 750 * parseInt(document.getElementById('nombre750personnecouple').value); document.getElementById('checkbox_diner').checked = true; document.getElementById('nombretotal500personneindividuel').value = 0; document.getElementById('nombretotal750personneindividuel').value = 0; document.getElementById('nombretotal750personnecouple').value = journee_diner; document.getElementById('nombretotal1000personne').value = 0; document.getElementById('nombretotal5000personne').value = 0; document.getElementById('hnombretotal500personneindividuel').value = 0; document.getElementById('hnombretotal750personneindividuel').value = 0; document.getElementById('hnombretotal750personnecouple').value = journee_diner; document.getElementById('hnombretotal1000personne').value = 0; document.getElementById('hnombretotal5000personne').value = 0;}
if (document.frmSubmit.radio_diner[2].checked && !isNaN(document.getElementById('nombre750personneindividuel').value)) { journee_diner = 750 * parseInt(document.getElementById('nombre750personneindividuel').value); document.getElementById('checkbox_diner').checked = true; document.getElementById('nombretotal500personneindividuel').value = 0; document.getElementById('nombretotal750personneindividuel').value = journee_diner; document.getElementById('nombretotal750personnecouple').value = 0; document.getElementById('nombretotal1000personne').value = 0; document.getElementById('nombretotal5000personne').value = 0; document.getElementById('hnombretotal500personneindividuel').value = 0; document.getElementById('hnombretotal750personneindividuel').value = journee_diner; document.getElementById('hnombretotal750personnecouple').value = 0; document.getElementById('hnombretotal1000personne').value = 0; document.getElementById('hnombretotal5000personne').value = 0;}
if (document.frmSubmit.radio_diner[3].checked && !isNaN(document.getElementById('nombre1000personne').value)) { journee_diner = 1000 * parseInt(document.getElementById('nombre1000personne').value); document.getElementById('checkbox_diner').checked = true; document.getElementById('nombretotal500personneindividuel').value = 0; document.getElementById('nombretotal750personneindividuel').value = 0; document.getElementById('nombretotal750personnecouple').value = 0; document.getElementById('nombretotal1000personne').value = journee_diner; document.getElementById('nombretotal5000personne').value = 0; document.getElementById('hnombretotal500personneindividuel').value = 0; document.getElementById('hnombretotal750personneindividuel').value = 0; document.getElementById('hnombretotal750personnecouple').value = 0; document.getElementById('hnombretotal1000personne').value = journee_diner; document.getElementById('hnombretotal5000personne').value = 0;}
if (document.frmSubmit.radio_diner[4].checked && !isNaN(document.getElementById('nombre5000personne').value)) { journee_diner = 6000 * parseInt(document.getElementById('nombre5000personne').value); document.getElementById('checkbox_diner').checked = true; document.getElementById('nombretotal500personneindividuel').value = 0; document.getElementById('nombretotal750personneindividuel').value = 0; document.getElementById('nombretotal750personnecouple').value = 0; document.getElementById('nombretotal1000personne').value = 0; document.getElementById('nombretotal5000personne').value = journee_diner; document.getElementById('hnombretotal500personneindividuel').value = 0; document.getElementById('hnombretotal750personneindividuel').value = 0; document.getElementById('hnombretotal750personnecouple').value = 0; document.getElementById('hnombretotal1000personne').value = 0; document.getElementById('hnombretotal5000personne').value = journee_diner;}
var don_sup = 0;
if (document.getElementById('checkbox_don').checked)
{
if (document.getElementById('don_sup').value != '' && !isNaN(document.getElementById('don_sup').value))
{
don_sup = document.getElementById('don_sup').value;
}
}
else
{
document.getElementById('don_sup').value = '';
}
document.getElementById('total').innerHTML = parseInt(journee_diner) + parseInt(diner_sup) + parseInt(don_sup);
document.getElementById('montant_total').value = document.getElementById('total').innerHTML;
if ((parseInt(journee_diner) + parseInt(diner_sup) + parseInt(don_sup)) > 0)
{
document.getElementById('prix').style.display='block';
}
else
{
document.getElementById('prix').style.display='none';
}
}
</script>
<style type="text/css">
/* General styles */
body { margin: 0; padding: 0; font: 0.8em Arial,Helvetica,sans-serif; color: #111; background-color: #FFF; }
a:hover{
color:#0172b6;
}
a{
color:#0172b6;
}
a:visited{
color:#0172b6;
}
h2 { margin: 0px; padding: 10px; font-family: Georgia, "Times New Roman", Times, serif; font-size: 200%; font-weight: normal; color: #FFF; background-color: #CCC; border-bottom: #BBB 2px solid; }
/* Form styles */
div.form-container {margin: auto; padding: 5px;}
p.legend { margin-bottom: 1em; }
p.legend em { color: #C00; font-style: normal; }
div.form-container form p { margin: 0; }
div.form-container form p.note { margin-left: 170px; font-size: 90%; color: #333; }
div.form-container form fieldset { margin: 10px 0; padding: 10px; border: #DDD 1px solid; }
div.form-container form legend { font-weight: bold; color: #000000; }
div.form-container form fieldset div { padding: 0.25em 0; }
div.form-container label,
div.form-container span.label { margin-right: 10px; padding-right: 10px; width: 150px; display: block; float: left; text-align: right; position: relative; }
div.form-container label em,
div.form-container span.label em { position: absolute; right: 0; font-size: 120%; font-style: normal; color: #C00; }
div.form-container input:focus,
div.form-container textarea:focus { background-color: #FFC; border-color: #FC6; }
div.form-container div.controlset label,
div.form-container div.controlset input { display: inline; float: none; }
div.form-container div.controlset div { margin-left: 170px; }
div.form-container div.buttonrow { margin: 4px;; text-align:center;}
#divAdhesion { margin: auto; text-align:center; border-width:2px; border-style:solid; border-color:#000000;}
#divfiscal {margin: auto; padding:10px; text-align:left; border-width:1px; border-style:solid; border-color:#000000;}
#messageNonMembre { text-align:center; font-size: 12px; font-weight: bold;color:#FF0000;}
#libelleMembre { font-size: 12px; font-weight: bold;}
#checkboxMembre { font-size: 14px; font-weight: bold;}
#prix { font-size: 16px; font-weight: bold;}
</style>
</head>
<body>
<div id="header" style="border: 1px solid #8a959b; width: 900px; margin: auto;">
<table width="100%" cellspacing="0" cellpaddin="0">
<tr>
<td width="50%">
<img src="/evenements/images/logo_faf.jpg" alt="logo FAF" style="float: left; margin: 30px;" width="300">
</td>
<td width="50%">
<p style="font-size: 24px;font-weight:bold; color:#0172b6; text-align:right; margin: 30px;">Inscription</p>
</td>
</tr>
<tr>
<td colspan="2" style="background-color:#0172b6; width: 100%;">
<div style="text-align: center; color:#ffffff; font-size: 20px;"><b><?=utf8_encode(html_entity_decode($line['libelle_evenement']))?></b></div>
<?php
if ($line['descriptif_evenement'] != '')
{
?>
<div style="text-align: center; color:#ffffff; font-size: 14px;"><b><?=nl2br($line['descriptif_evenement'])?></b></div>
<?php
}
?>
<div style="text-align: center; color:#ffffff; font-size: 18px;"><b>18-19 novembre 2011</b></div>
</td>
</tr>
<tr>
<td colspan="2" style="width: 100%;">
<div class="form-container">
<form action="/evenements/paiement2.php" method="post" name="frmSubmit" onSubmit="return verification()">
<input type="hidden" name="id_evenement" value="<?=$id_evenement?>">
<fieldset>
<legend>Contact</legend>
<table width="100%">
<tr>
<td>
<div><label for="email_contact">Email <em>*</em></label> <input id="email_contact" name="email_contact" size="25" type="text"><input id="email" name="email" type="hidden" value="" /></div>
</td>
</tr>
<tr>
<td>
<div><label for="civilite_contact">Civilité <em>*</em></label> <select name="civilite_contact" id="civilite_contact"><option value="Madame">Madame</option><option value="Monsieur">Monsieur</option></select></div>
</td>
</tr>
<tr>
<td>
<div><label for="prenom_contact">Prénom <em>*</em></label> <input id="prenom_contact" name="prenom_contact" size="25" type="text"></div>
</td>
</tr>
<tr>
<td>
<div><label for="nom_contact">Nom <em>*</em></label> <input id="nom_contact" name="nom_contact" size="25" type="text"></div>
</td>
</tr>
<tr>
<td>
<div><label for="telephone_contact">Téléphone portable <em>*</em></label> <input id="telephone_contact" size="25" name="telephone_contact" type="text"></div>
</td>
</tr>
<tr style="display:none;visibility:hidden;">
<td>
<div><label for="portable_contact">Téléphone portable</label> <input id="portable_contact" size="25" name="portable_contact" type="text"></div>
</td>
</tr>
</table>
</fieldset>
<fieldset>
<legend></legend>
<table width="100%">
<tr>
<td>
<div><label for="entreprise_contact">Entreprise</label> <input id="entreprise_contact" name="entreprise_contact" size="25" type="text"> Autre<input type="checkbox" id="autre_contact" name="autre_contact" onclick="if (this.checked == false) { document.getElementById('obligatoire').innerHTML='*'; } else { document.getElementById('obligatoire').innerHTML=''; }" /></div>
</td>
</tr>
<tr>
<td>
<div><label for="fonction_contact">Fonction <em><span id="obligatoire">*</span></em></label> <input id="fonction_contact" name="fonction_contact" size="25" type="text"></div>
</td>
</tr>
<tr>
<td>
<div><label for="adresse_entreprise_contact">Adresse <em>*</em></label> <input id="adresse_entreprise_contact" name="adresse_entreprise_contact" size="50" type="text"></div>
</td>
</tr>
<tr>
<td>
<div><label for="code_postal_entreprise_contact">Code Postal <em>*</em></label> <input id="code_postal_entreprise_contact" name="code_postal_entreprise_contact" size="25" type="text"></div>
</td>
</tr>
<tr>
<td>
<div><label for="ville_entreprise_contact">Ville <em>*</em></label> <input id="ville_entreprise_contact" name="ville_entreprise_contact" size="25" type="text"></div>
</td>
</tr>
</table>
</fieldset>
<table width="100%">
<tr>
<td width="40%" style="vertical-align:top;">
<div>
<span style="font-weight:bold; color:#0172b6; text-decoration:underline;">Inscription journées du trentième anniversaire : </span>
<table width="100%">
<tr>
<td width="180px" colspan="2">
<div id="precisions">
<!--<span style="font-weight:bold; color:#0172b6; text-decoration:underline;">Participation :</span>--><br /><br />
<strong>Déjeuner du vendredi 18 novembre à l'Ambassade des Etats-Unis</strong><br /><br />
<input id="radio_1" name="radio_1" type="radio" value="a" checked="checked" /> Oui
<input id="radio_1" name="radio_1" type="radio" value="z" /> Non<br /><br />
<strong>Rencontres du vendredi 18 novembre après-midi</strong><br /><br />
<input id="radio_2" name="radio_2" type="radio" value="b" checked="checked" /> Oui
<input id="radio_2" name="radio_2" type="radio" value="z" /> Non<br /><br />
<strong>Visite du château de Versailles le samedi 19 novembre matin</strong><br /><br />
<input id="radio_3" name="radio_3" type="radio" value="c" checked="checked" /> Oui
<input id="radio_3" name="radio_3" type="radio" value="z" /> Non<br /><br />
<strong>Déjeuner du samedi 19 novembre au Trianon Palace</strong><br /><br />
<input id="radio_4" name="radio_4" type="radio" value="d" checked="checked" /> Oui
<input id="radio_4" name="radio_4" type="radio" value="z" /> Non<br /><br />
<strong>Panels de discussion Young Leaders du samedi 19 novembre après-midi et cocktail de clôture</strong><br /><br />
<input id="radio_5" name="radio_5" type="radio" value="e" checked="checked" /> Oui
<input id="radio_5" name="radio_5" type="radio" value="z" /> Non
</div>
</td>
</tr>
<tr>
<td width="180px">
</td>
<td>
</td>
</tr>
</table>
</div>
</td>
<td width="60%" style="vertical-align:top;">
<div><input id="checkbox_diner" name="checkbox_diner" type="checkbox" onclick="if (document.frmSubmit.checkbox_diner.checked) { if (!document.frmSubmit.radio_diner[0].checked && !document.frmSubmit.radio_diner[1].checked && !document.frmSubmit.radio_diner[2].checked && !document.frmSubmit.radio_diner[3].checked && !document.frmSubmit.radio_diner[4].checked) {document.frmSubmit.radio_diner[0].checked = true;} toutcalc();} else { document.getElementById('diner_sup').value = ''; document.frmSubmit.radio_diner[0].checked = false; document.frmSubmit.radio_diner[1].checked = false; document.frmSubmit.radio_diner[2].checked = false; document.frmSubmit.radio_diner[3].checked = false; document.frmSubmit.radio_diner[4].checked = false; toutcalc();}" /> <span style="font-weight:bold; color:#0172b6; text-decoration:underline;">Dîner de Gala</span>
<table width="100%">
<tr>
<td width="220px">
<input id="radio_diner" name="radio_diner" type="radio" value="500individuel" onclick="toutcalc()" /> 500€ Individuel
</td>
<td>
500€ par pers. * <input type="text" name="nombre500personneindividuel" id="nombre500personneindividuel" size="1" value="1" onchange="toutcalc()" /> pers. = <input type="text" name="nombretotal500personneindividuel" id="nombretotal500personneindividuel" size="6" disabled onchange="toutcalc()" /> €<input type="hidden" name="hnombretotal500personneindividuel" id="hnombretotal500personneindividuel" value="" />
</td>
</tr>
<tr>
<td width="220px">
<input id="radio_diner" name="radio_diner" type="radio" value="750couple" onclick="toutcalc()" /> 750€ Couple Young Leaders
</td>
<td>
<input style="visibility:hidden;" type="text" name="nombre750personnecouple" id="nombre750personnecouple" size="1" value="1" onchange="toutcalc()" /> = <input type="text" name="nombretotal750personnecouple" id="nombretotal750personnecouple" size="6" disabled onchange="toutcalc()" /> €<input type="hidden" name="hnombretotal750personnecouple" id="hnombretotal750personnecouple" value="" />
</td>
</tr>
<tr>
<td width="220px">
<input id="radio_diner" name="radio_diner" type="radio" value="750partenaire" onclick="toutcalc()" /> 750€ Partenaire
</td>
<td>
750€ par pers. * <input type="text" name="nombre750personneindividuel" id="nombre750personneindividuel" size="1" value="1" onchange="toutcalc()" /> pers. = <input type="text" name="nombretotal750personneindividuel" id="nombretotal750personneindividuel" size="6" disabled onchange="toutcalc()" /> €<input type="hidden" name="hnombretotal750personneindividuel" id="hnombretotal750personneindividuel" value="" />
</td>
</tr>
<tr>
<td width="220px">
<input id="radio_diner" name="radio_diner" type="radio" value="1000leader" onclick="toutcalc()" /> 1000€ Leader
</td>
<td>
1000€ par pers. * <input type="text" name="nombre1000personne" id="nombre1000personne" size="1" value="1" onchange="toutcalc()" /> pers. = <input type="text" name="nombretotal1000personne" id="nombretotal1000personne" size="6" disabled onchange="toutcalc()" /> €<input type="hidden" name="hnombretotal1000personne" id="hnombretotal1000personne" value="" />
</td>
</tr>
<tr>
<td width="220px">
<input id="radio_diner" name="radio_diner" type="radio" value="5000table" onclick="toutcalc()" /> 6000€ Table de 12 personnes
</td>
<td>
6000€ * <input type="text" name="nombre5000personne" id="nombre5000personne" size="1" value="1" onchange="toutcalc()" /> table = <input type="text" name="nombretotal5000personne" id="nombretotal5000personne" size="6" disabled onchange="toutcalc()" /> €<input type="hidden" name="hnombretotal5000personne" id="hnombretotal5000personne" value="" />
</td>
</tr>
<tr>
<td width="220px">
Don Gala
</td>
<td>
<input type="text" name="diner_sup" id="diner_sup" size="6" onchange="toutcalc()" /> €
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
<tr>
<td colspan="2">
<div><input id="checkbox_don" name="checkbox_don" type="checkbox" onclick="toutcalc()" /> Je souhaite faire un don à la French-American Foundation – France pour soutenir le financement de ses activités.</div>
<table width="100%">
<tr>
<td width="180px">
Don
</td>
<td>
<input type="text" name="don_sup" id="don_sup" size="6" onchange="toutcalc()" /> €
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table width="100%">
<tr>
<td width="180px">
</td>
<td>
</td>
</tr>
</table>
</td>
<td>
<table width="100%">
<tr>
<td width="180px" colspan="2">
Montant total de votre règlement : <strong><span id="total">0</span> €</strong><input type="hidden" name="montant_total" id="montant_total" value="" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2">
<div id="divfiscal">
<p style="font-weight:bold; color:#0172b6; text-decoration:underline;">Avantages fiscaux pour les particuliers :</p>
<p style="font-weight:normal; color:#000000; text-decoration:none;">Un reçu fiscal vous sera délivré sur demande.</p>
</div>
</td>
</tr>
</table>
<table width="100%">
<tr>
<td align="left" width="20%" colspan="2">
<div id="prix" style="display:none;">
<?php
if ($line['mode_paiement'] == 'CHEQUE+PAYPAL')
{
echo '<table width="30%">';
echo '<tr>';
echo '<td colspan="2">';
echo 'Mode de règlement';
echo '</td>';
echo '</tr>';
echo '<tr>';
echo '<td>';
echo 'Paiement en ligne';
echo '</td>';
echo '<td>';
echo '<INPUT type=radio name="type_paiement" checked onclick="document.getElementById(\'messageCheque\').style.display=\'none\';" value="PAYPAL" /><br />';
echo '</td>';
echo '</tr>';
echo '<tr>';
echo '<td>';
echo 'Chèque';
echo '</td>';
echo '<td>';
echo '<INPUT type=radio name="type_paiement" onclick="document.getElementById(\'messageCheque\').style.display=\'block\';" value="CHEQUE" />';
echo '</td>';
echo '</tr>';
echo '</table>';
}
else
{
echo '<INPUT type=hidden name="type_paiement" value="'.$line['mode_paiement'].'" />';
}
?>
</div>
</td>
</tr>
<?php
if ($line['mode_paiement'] == 'CHEQUE')
{
?>
<tr>
<td align="left" width="20%" colspan="3">
<div id="messageCheque" style="display:block;">
« Les chèques bancaires sont à libeller à l’ordre de le <strong>French-American Foundation – France</strong>, 18 bis boulevard Arago, 75013 Paris. »
</div>
</td>
</tr>
<?php
}
?>
<?php
if ($line['mode_paiement'] == 'CHEQUE+PAYPAL')
{
?>
<tr>
<td align="left" width="20%" colspan="3">
<div id="messageCheque" style="display:none;">
« Les chèques bancaires sont à libeller à l’ordre de le <strong>French-American Foundation – France</strong>, 18 bis boulevard Arago, 75013 Paris. »
</div>
</td>
</tr>
<?php
}
?>
</table>
<div class="buttonrow">
<input value="Valider Votre Inscription" style="height: 30px; width: 170px;" name="envoiForm" type="submit">
</div>
</form>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>