60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<div id="center">
|
|
<h1>Liste de vos dernières recherches</h1>
|
|
<style type="text/css">
|
|
.params a {float:right;}
|
|
</style>
|
|
<?php
|
|
require_once 'recherche/session.php';
|
|
$nb_recherche = count($_SESSION['recherche']['list']);
|
|
|
|
if($nb_recherche==0){
|
|
?>
|
|
Aucune recherche enregistré.
|
|
<?php
|
|
}else{
|
|
?>
|
|
<ul>
|
|
<?php
|
|
for($i=0;$i<$nb_recherche;$i++){
|
|
$parametres = recherche_element($i);
|
|
?>
|
|
<li>
|
|
<?php
|
|
if($parametres['type']=='ent'){
|
|
?>
|
|
<p>RECHERCHE ENTREPRISE : </p>
|
|
<div class="params">
|
|
SIREN : <?php print $parametres['siret'];?><br/>
|
|
RAISON SOCIALE : <?php print $parametres['raisonSociale'];?><br/>
|
|
N° & VOIE : <?php print $parametres['numVoie'];?><br/>
|
|
CP OU DÉP. / VILLE :<?php print $parametres['cpVille'];?><br/>
|
|
TÉL / FAX : <?php print $parametres['telFax'];?><br/>
|
|
NAF : <?php print $parametres['naf'];?><br/>
|
|
<a href="./?page=recherche&action=rechercher&vue=list<?php print $parametres['link'];?>"> >>> Recherche</a>
|
|
</div>
|
|
<?php
|
|
}
|
|
elseif($parametres['type']=='dir')
|
|
{
|
|
?>
|
|
<p>RECHERCHE DIRIGEANT : </p>
|
|
<div class="params">
|
|
NOM : <?php print $parametres['dirNom'];?><br/>
|
|
PRENOM : <?php print $parametres['dirPrenom'];?><br/>
|
|
DATE DE NAISSANCE : <?php print $parametres['dirDateNaissJJ'].'/'.$parametres['dirDateNaissMM'].'/'.$parametres['dirDateNaissAAAA'];?><br/>
|
|
CP OU DÉP. / VILLE DE NAISSANCE : <?php print $parametres['dirCpVille'];?><br/>
|
|
<a href="./?page=recherche&action=rechercher&vue=list<?php print $parametres['link'];?>"> >>> Recherche</a>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
</li>
|
|
<?php
|
|
}
|
|
?>
|
|
</ul>
|
|
<?php
|
|
}
|
|
?>
|
|
</a>
|
|
</div>
|