I need to pass a hidden field from one script to a saved file....e.g. My cgi script creates and writes to an external XML file. This is what I have so far:
print qq(<input type="hidden" name="filename" value="$goodsave">\n);
$goodsave is the scalar I chose to use to hold my information
e.g.
#Connect last and first name for name of file to be saved
$save = $last . '_' . $first;
my $goodsave = $save . '.xml';
On my XML page, there is a button that will move the file to another directory. I don't know if I need to call this hidden field in my XSL stylesheet or in the cgi script when the "Submit" button is pushed. Enclosed is my script that should run when the button is pushed. I appreciate any and all help. Thank you.
Mrclean78


Reply With Quote

Bookmarks