altocompta/include/template/card_result.php
Dany De Bontridder 8ed6f7f707 Merged revisions 2994-3000 via svnmerge from
svn+ssh://danydb@svn/svn/phpcompta/branches/rel500

........
  r2994 | danydb | 2010-04-09 19:11:55 +0200 (Fri, 09 Apr 2010) | 2 lines
  
  Fix Bug : stock good avoid the record of a new card
........
  r2995 | danydb | 2010-04-09 23:15:57 +0200 (Fri, 09 Apr 2010) | 2 lines
  
  For windows, improve the installation (correct default values)
........
  r2996 | danydb | 2010-04-09 23:16:38 +0200 (Fri, 09 Apr 2010) | 1 line
  
  For windows improve installation
........
  r2997 | danydb | 2010-04-09 23:21:07 +0200 (Fri, 09 Apr 2010) | 1 line
  
  what_os is redefined
........
  r2998 | danydb | 2010-04-11 20:52:52 +0200 (Sun, 11 Apr 2010) | 1 line
  
  improve appearance
........
  r2999 | danydb | 2010-04-11 20:53:06 +0200 (Sun, 11 Apr 2010) | 1 line
  
  improve appearance
........
  r3000 | danydb | 2010-04-11 20:57:35 +0200 (Sun, 11 Apr 2010) | 1 line
  
  echo_warning use the CSS class error instead of info
........
2010-04-12 09:36:01 +00:00

29 lines
591 B
PHP

<fieldset id="asearch" style="height:88%">
<legend><? echo _('Résultats'); ?></legend>
<div style="height:88%;overflow:auto;">
<table width="100%">
<? for ($i=0;$i<sizeof($array);$i++) : ?>
<tr>
<td>
<a href="javascript:void(0)" class="one" onclick="<?=$array[$i]['javascript']?>">
<?=$array[$i]['quick_code']?>
</a>
</td>
<td>
<?=$array[$i]['name']?>
</td>
<td>
<?=$array[$i]['description']?>
</td>
</tr>
<? endfor; ?>
</table>
<span style="background-color:#9FFFF1;border:1px solid black;padding:2px">
<? echo _("Nombre d'enregistrements:$i"); ?>
</span>
<br>
</div>
</fieldset>