altocompta/include/template/card_result.php
Dany De Bontridder e6a2f2935d Task #0000839: Réécriture de la procédure d'installation
Setup.php en partie réécrit
Tous les tags <? ont été changés en <?php pour les servers mutualisés
2013-05-16 21:34:17 +00:00

32 lines
663 B
PHP

<fieldset id="asearch" style="height:88%">
<legend><?php echo _('Résultats'); ?></legend>
<div style="height:88%;overflow:auto;">
<table >
<?php for ($i=0;$i<sizeof($array);$i++) : ?>
<tr>
<td style="padding-right:55">
<a href="javascript:void(0)" class="one" onclick="<?php echo $array[$i]['javascript']?>">
<?php echo $array[$i]['quick_code']?>
</a>
</td>
<td>
<?php echo $array[$i]['name']?>
</td>
<td>
<?php echo $array[$i]['first_name']?>
</td>
<td>
<?php echo $array[$i]['description']?>
</td>
</tr>
<?php endfor; ?>
</table>
<span style="font-style: italic;">
<?php echo _("Nombre d'enregistrements:$i"); ?>
</span>
<br>
</div>
</fieldset>