Skip to content

Instantly share code, notes, and snippets.

@igorgue
Created October 28, 2009 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igorgue/220852 to your computer and use it in GitHub Desktop.
Save igorgue/220852 to your computer and use it in GitHub Desktop.
# post_hello.rb
require 'rubygems'
require 'sinatra'
get '/' do
<<-form
<h1>Name to say hi!</h1>
<form method="post">
<input type="text" name="name">
<input type="submit" value="send">
</form>
form
end
post '/' do
"Hi #{params[:name]}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment