2010-03-02 16:23:02 +00:00
|
|
|
<?php
|
|
|
|
foreach (array('dirNom',
|
|
|
|
'dirPrenom',
|
|
|
|
'dirDateNaissJJ',
|
|
|
|
'dirDateNaissMM',
|
|
|
|
'dirDateNaissAAAA',
|
|
|
|
'dirCpVille') as $label) {
|
|
|
|
if (isset($formR[$label]) == false) {
|
|
|
|
$formR[$label] = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
2009-07-22 07:12:37 +00:00
|
|
|
<br/><br/><br/><br/><br/>
|
2010-05-04 13:21:19 +00:00
|
|
|
<form name="form_recherche" action="./?page=recherche&action=rechercher&vue=list" method="post">
|
2009-07-22 07:12:37 +00:00
|
|
|
<input type="hidden" name="formR[type]" value="dir"/>
|
|
|
|
<table cellpadding="0" cellspacing="0">
|
2009-08-12 10:16:34 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top" width="580" height="200" align="center">
|
|
|
|
|
|
|
|
<table>
|
2009-07-22 07:12:37 +00:00
|
|
|
<tr>
|
2010-05-04 07:55:20 +00:00
|
|
|
<td align="center">
|
|
|
|
<h2 align="center" class="StyleRechercheTitre">RECHERCHE PAR DIRIGEANT</h2>
|
|
|
|
</td>
|
2009-08-12 10:16:34 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td width="208" align="right" class="StyleRechercheLib"><b>NOM</b></td>
|
2009-12-04 17:17:09 +00:00
|
|
|
<td width="300" align="left">
|
|
|
|
<input type="text" name="formR[dirNom]" value="<?=$formR['dirNom']?>" size="25" maxlength="40" style="vertical-align:middle;" />
|
|
|
|
</td>
|
|
|
|
<td width="72"> </td>
|
2009-08-12 10:16:34 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="208" align="right" class="StyleRechercheLib"><b>PRENOM</b></td>
|
2009-12-04 17:17:09 +00:00
|
|
|
<td width="300" align="left">
|
|
|
|
<input type="text" name="formR[dirPrenom]" value="<?=$formR['dirPrenom']?>" size="25" maxlength="40" /></td>
|
2009-08-12 10:16:34 +00:00
|
|
|
<td width="72"> </td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<br/>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td width="208" align="right" class="StyleRechercheLib"><b>DATE NAISSANCE</b></td>
|
2010-05-04 07:55:20 +00:00
|
|
|
<td width="300" align="left" class="StyleRechercheLib">
|
|
|
|
<input maxLength="2" size="2" name="formR[dirDateNaissJJ]" value="<?=$formR['dirDateNaissJJ']?>" /> /
|
|
|
|
<input maxLength="2" size="2" name="formR[dirDateNaissMM]" value="<?=$formR['dirDateNaissMM']?>" /> /
|
|
|
|
<input maxLength="4" size="4" name="formR[dirDateNaissAAAA]" value="<?=$formR['dirDateNaissAAAA']?>" /></td>
|
2009-08-12 10:16:34 +00:00
|
|
|
<td width="72"> </td>
|
2009-07-22 07:12:37 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2009-08-12 10:16:34 +00:00
|
|
|
<td width="208" align="right" class="StyleRechercheLib"><b>CP OU DÉP. / VILLE DE NAISSANCE</b></td>
|
2009-12-04 17:17:09 +00:00
|
|
|
<td width="300" align="left"><input type="text" name="formR[dirCpVille]" value="<?=$formR['dirCpVille']?>" size="25" maxlength="40" /></td>
|
2009-08-12 10:16:34 +00:00
|
|
|
<td width="72"> </td>
|
2009-07-22 07:12:37 +00:00
|
|
|
</tr>
|
2009-08-12 10:16:34 +00:00
|
|
|
</table>
|
|
|
|
|
2010-05-04 16:17:50 +00:00
|
|
|
<table width="580">
|
|
|
|
<tr>
|
|
|
|
<td width="208"> </td>
|
|
|
|
<td width="176" align="center" valign="top">
|
|
|
|
<input class="button" type="submit" name="submit" value="Recherche" title="Lancer la recherche..." />
|
|
|
|
</td>
|
|
|
|
<td valign="top">
|
|
|
|
<input class="button" type="reset" name="reset" value="RàZ" title="Remise à zéro" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
2009-12-04 17:17:09 +00:00
|
|
|
</td>
|
2009-08-12 10:16:34 +00:00
|
|
|
</tr>
|
2009-07-22 07:12:37 +00:00
|
|
|
</table>
|
2010-05-04 16:17:50 +00:00
|
|
|
|
|
|
|
|
2009-07-22 07:12:37 +00:00
|
|
|
</form>
|