18 lines
703 B
PHP
Executable File
18 lines
703 B
PHP
Executable File
|
|
<?php
|
|
if(!empty($beneficiaires)) {
|
|
?>
|
|
<ul id="element-list">
|
|
<?php
|
|
foreach($beneficiaires as $v) {
|
|
?>
|
|
<li onClick="selectBeneficiaire('<?= $v["id"]; ?>','<?= $v["numero"]; ?>', '<?= $this->echapper($v["beneficiaire"]); ?>', '<?= $this->echapper($v["nomPolice"]); ?>', '<?= $this->echapper($v["nomCollege"]); ?>', '<?= $v["codeLienParente"]; ?>', '<?= $v["numeroAdherent"]; ?>', '<?= $this->echapper($v["adherent"]); ?>');"><?= $v["numero"]; ?></li>
|
|
<?php } ?>
|
|
</ul>
|
|
<?php
|
|
} else{
|
|
?>
|
|
<marquee behavior="scroll" direction="left" scrollamount="10" style="color:white; background-color:red; font-size:14pt; font-weight:bold;">
|
|
<?= _("Ce numéro n'existe pas!") ?>
|
|
</marquee>
|
|
<?php } ?>
|