Skip to content

Instantly share code, notes, and snippets.

@nommy
Created June 1, 2012 01:39
Show Gist options
  • Save nommy/2847957 to your computer and use it in GitHub Desktop.
Save nommy/2847957 to your computer and use it in GitHub Desktop.
Sinatra Prac3
require 'rubygems'
require 'sinatra'
get '/' do
erb %{
<p>What your name?</p>
<form action='/hello' method='POST'>
<input type='text' name='name'>
<input type='submit' value='submit'>
</form>
}
end
post '/hello' do
erb %{
<p>hello,<%= params[:name] %></p>
<a href='/'>back</a>
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment