Forum Moderators: coopster
echo "<td align=\"center\"><form method=\"post\" action=\"http://mysite.blabla.com/input.jsp\">".
"<input class=\"formbutton\" type=\"submit\" value=\"Run program\"/>".
"<input type=\"hidden\" name=\"formInput\" value=\">".$code."\n".$sequence."\"/>".
"</form></td></tr>\n";
and I use the code above in order to fill data in the textarea in the jsp page. Tha code in the input.jsp page is:
<td>
<textarea class="small" name="formInput" ></textarea>
</td>The problem is that I do not see any data being written in the textarea when I press the button...