the only value I read out of xml are the values of the variables in the querystring:
- mov.flv, 320, 240 and 1
thus, in xsl, it looks like:
FLVPlayer.swf?s={source}&w={width}&h={heig ht}&z=1
and xml like:
<record>
<source>mov.flv<source>
<width>320</width>
<height>240</height>
</record>
|