altocompta/include/template/card_result.php
2014-01-19 20:30:01 +01:00

36 lines
739 B
PHP

<?php
//This file is part of NOALYSS and is under GPL
//see licence.txt
?>
<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>