Posting form data into file and onto webpage
Could you please tell me how do I post form data onto web page and also write into the file using ruby. This is my html form code:
#!/usr/bin/ruby
print "Content-type:text/html\n\n";
# Display the form
print <<HTML;
<html>
<body>
<form action="form1.rb" method="post">
<p>Your Name:<input type="text" name="name"></p>
<input type="submit" name="submit" value="Submit">
</form>
</body></html>
HTML
Thanks
by
1 Reply