
September 16th, 2003, 05:00 AM
|
|
Contributing User
|
|
Join Date: Aug 2001
Posts: 261
Time spent in forums: 1 Day 6 h 18 m
Reputation Power: 8
|
|
|
values of nodes in the header of the .pdf?
Hi there,
Trying to create a simple table in a .pdf from this simple xml file
My xml file:
PHP Code:
<?xml version="1.0"?>
<root>
<name>TestName</name>
<printDate>Mon Sep 15 16:11:33 CEST 2003</printDate>
<table>
<row>
<node1>test</node1>
<node2>test</node2>
<node3>test3</node3>
</row>
etc
My question is how do i get the values of the first two nodes ("name", "printDate") in the header of the .pdf through .xsl
I have tried
PHP Code:
<fo:static-content flow-name="xsl-region-before" >
<fo:block text-align="end" border-bottom="solid" border-bottom-color="navy">
<xsl:value-of select="name"/>
</fo:block>
</fo:static-content>
no luck
any tips.
|