26 lines
661 B
PHP
26 lines
661 B
PHP
<?php
|
|
|
|
$path = PATH_DATA.'/graydon/method';
|
|
$fileName = strtolower('CompanyMatchIdentifiers-'.$pays);
|
|
|
|
/** Recherche des identifiants et mise en cache **/
|
|
$identifiers = getCompanyMatchIdentifiers($pays);
|
|
if(is_array($identifiers)){
|
|
$firephp->log($identifiers,'identifiers');
|
|
$count = 0;
|
|
foreach($identifiers as $identifier){
|
|
?>
|
|
<input type="hidden" name="method" value="identifier" />
|
|
<label><?php print $identifier->Description ?></label>
|
|
<input type="text" name="frmRecherche[Identifier]" value="" />
|
|
<?php
|
|
$count++;
|
|
}
|
|
}elseif($identifiers=='noidentifiers'){
|
|
print 'Pas d\identifiant disponible pour ce pays.';
|
|
}else{
|
|
print $identifiers;
|
|
}
|
|
|
|
|
|
?>
|