putting data into html tables ?

Subject: putting data into html tables ?
From: Ralf Weidemann <Finc01@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Mon, 15 Mar 1999 21:46:07 +0100 (CET)
Hi all,

I want to fill the below html tables I-III
with some data. The fields are not always
the same. I think I need something like the
below pseudo code in all fields, but I don't
know how to do this in XSL. Can someone give
me a hint how to do this or have a better idea
how to do it ??

Thanks,
Ralf 


<TD>
  if ((d1==I)&&(d2==b)&&(d3==1))
    insert(d4,d5)
</TD>

 I  a b c d  
    -------
 1 |  x
 2 | 
 3 |    x
 4 |      x

 II a b c d  
    -------
 1 |    x
 2 | 
 3 |  x
 4 |    x

III a b c d  
    -------
 1 |      x
 2 | 
 3 |x
 4 |  x

<tables>
 <table>
  <d1>I</d1>
  <d2>b</d2>
  <d3>1</d3>
  <d4>...</d4>
  <d5>...</d5>
 </table>
  ...
 <table>
  <d1>II</d1>
  <d2>c</d2>
  <d3>1</d3>
  <d4>...</d4>
  <d5>...</d5>
 </table>
  ...
 <table>
  <d1>III</d1>
  <d2>d</d2>
  <d3>1</d3>
  <d4>...</d4>
  <d5>...</d5>
 </table>
  ...
</tables> 



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread