IHYPRESS.NET
RUBY
HOME | ASP | C | CSS | HTML | JAVASCRIPT | PERL | PHP | PYTHON | RUBY | SVG
Ruby (CGI Programming) ❯ Forms
<20>
#!/usr/bin/ruby require "cgi" cgi = CGI.new("html5") cgi.out{ cgi.html{ cgi.head{ "\n"+cgi.title{"Page Title Here"} } + cgi.body{ "\n"+ cgi.form{"\n"+ cgi.h1 { "Enter text here: " } + "\n"+ cgi.textarea("text_area",cols=30,rows=5) +"\n"+ cgi.br + cgi.submit } } } }
Page Title Here

Enter text here:


COPYRIGHT © 2015-2024 IHYPRESS.NET. A DIVISION OF IHY PRESS. ALL RIGHTS RESERVED.