Why isn't this printing the URL to the webpage's link? All I get are empty quotes ("").
Thanks,
Dean
Form:
<input type="hidden" name="continue" value="http://www.webmonkeydean.com/et-toi/">
Script:
<a href="$fields{'continue'}">Continue</a>
A little bit more of the script:
if ($ENV{'REQUEST_METHOD'} eq "GET" && -e $DATA_FILE){ $MODE="VIEW"; &set_colors; &process_file; &do_stats; $PAGEHEADER=&set_page_header; $PAGEFOOTER=&set_page_footer; print "Content-type: text/html\n\n"; print "$PAGEHEADER\n"; &display_stats; print "$PAGEFOOTER\n"; exit; } sub set_page_footer{ my $PAGEFOOT=<<__END_PAGE_FOOT__; <TR> <TD COLSPAN=4 ALIGN=CENTER> <FONT FACE="$FONT" COLOR="$FONTCOLOR"> <A HREF="$fields{'continue'}"><B>Continue</B></a> </FONT> </TD> </TR> </TABLE> </td></tr></table> </body> </html> __END_PAGE_FOOT__ return $PAGEFOOT; }
All of the script as a text file:
http://www.webmonkeydean.com/et-toi/survey.txt
The survey in action:
http://www.webmonkeydean.com/et-toi/
In reply to Printing URL to webpage by Deanimal
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |