This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: context-independent counter


> Ho to increment a variable or param with each
> iteration of a for-each-loop, independent of the
> context of the current node?

XSLT doesn't have updateable variables; it is not a sequential programming
language.
> I just need a counter.
> Here is how I would do it in PHP:
>
> $line_count = 1;
> while ( $line_count <= 100 )
>    {
>    print ("$line_count"."<br>"."\n");
>    $line_count++;
>    }
>
You don't need a counter: the position() function serves the purpose.

Mike Kay


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]