extranet/includes/recherche/recherche_histo.php

60 lines
1.5 KiB
PHP
Raw Normal View History

<div id="center">
<h1>Liste de vos derni<EFBFBD>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<EFBFBD>.
<?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<EFBFBD> & VOIE : <?php print $parametres['numVoie'];?><br/>
CP OU D<EFBFBD>P. / VILLE :<?php print $parametres['cpVille'];?><br/>
T<EFBFBD>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<EFBFBD>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>