extranet/www/pages/graydon/method_identifier.php

26 lines
661 B
PHP
Raw Normal View History

2009-04-06 17:05:03 +00:00
<?php
$path = PATH_DATA.'/graydon/method';
$fileName = strtolower('CompanyMatchIdentifiers-'.$pays);
/** Recherche des identifiants et mise en cache **/
$identifiers = getCompanyMatchIdentifiers($pays);
if(is_array($identifiers)){
2009-04-07 17:44:17 +00:00
$firephp->log($identifiers,'identifiers');
$count = 0;
2009-04-07 17:44:17 +00:00
foreach($identifiers as $identifier){
2009-04-06 17:05:03 +00:00
?>
2009-04-20 12:54:22 +00:00
<input type="hidden" name="method" value="identifier" />
<label><?php print $identifier->Description ?></label>
2009-04-20 12:54:22 +00:00
<input type="text" name="frmRecherche[Identifier]" value="" />
<?php
$count++;
}
}elseif($identifiers=='noidentifiers'){
print 'Pas d\identifiant disponible pour ce pays.';
}else{
print $identifiers;
}
?>