Becky has asked for the wisdom of the Perl Monks concerning the following question:
print qq{<form action='/cgi-bin/opal/display_seview.cgi' method='post' target='new'>
<input type='hidden' name='text' value='$joined'/>
<input type='hidden' name='header' value='$query'/>
<input type='hidden' name='sequence' value='$whole_sequence'/>
<input type='submit' value='View Applet in new window'/></form>
The problem is with the variable $joined. When I view the source of the page I see that the end of input type tag, "/>, has been inserted before the end of the string in $joined. I've tried putting double quotes around the variables (with backslashes in front of them) but to no avail. Any ideas why this is happening? Thanks!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: html form not working
by kyle (Abbot) on Jan 18, 2007 at 11:53 UTC | |
by Becky (Beadle) on Jan 18, 2007 at 12:35 UTC | |
|
Re: html form not working
by shmem (Chancellor) on Jan 18, 2007 at 11:45 UTC | |
|
Re: html form not working
by ferreira (Chaplain) on Jan 18, 2007 at 12:03 UTC |