How to transfer data element results via submit?
Posted: Sun Sep 30, 2007 1:39 pm
I have gathered information via a data element, and I'd like to transfer the information gathered by that element via submit.
followed later by
does not work, as seen when I attempt to set info in the next script:
I get a null, which indicates not a PHP failure but a failure to set info in the POST in the first place. Encoding types, as well as method types, do not seem to matter.
I'm not particularly surprised that this does not work, but I'd like to know if it can be made to work. It's an implementation-dependant issue.
Code: Select all
<data src="foo.xml" name="info" method="post" namelist="request"/>
Code: Select all
<submit expr="thatNextFile" namelist="info" method="post" />
Code: Select all
<var name="info" expr="<?php echo $_REQUEST["info"]?>"/>
I'm not particularly surprised that this does not work, but I'd like to know if it can be made to work. It's an implementation-dependant issue.