http://qs321.pair.com?node_id=742746


in reply to Push + variable argument

Your case1 push @arr, ('val', '1'); definitely does not assign 1 to a variable called $val.

I suggest taking another look at the docs on push.

hth!

Replies are listed 'Best First'.
Re^2: Push + variable argument
by himanshu.padmanabhi (Acolyte) on Feb 10, 2009 at 12:42 UTC
    This is the full code. push @xsltParams, ('arg', $str); my $result = $stylesheet->transform_file('abc.xml', @xsltParams); Without quotes doesn't give error,but $arg not got filled. In 'abc.xsl',I am supposed to access like this, <xsl:value-of select="$arg"/> where $str contains space separated values which I need to separate and print..