we are working on RApache,
we are sending the form argument from .html file which configured to brew.
_______________________(one.html)_______________
<html>
<form name="one" method="POST" action="./brew/one_result.html">
<input type="text" name="one">
<input type="submit">
</html>
__________________________(one_result.html)_________________
<%
print(post$one)
%>
passing of arguments from (one.html) to (one_result.html) will work some times and argument value is printing on browser but some times saying "POST$pname : object of type 'closure' is not subsettable" in error log.
could any body help us to resolve the issue.
thanks in advance, Mallik.