Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSadie Wood
2,530 PointsNo idea how to solve this
The teaching before this has no information how to answer this question... With no hints either. No idea if I'm on the right track.
require "sinatra"
get "/greet/:name" do
"<p>Hello<p>"
page_content(params[/:name])
end
1 Answer
Clayton Perszyk
Treehouse Moderator 48,850 PointsI haven't used Ruby in a while, but it looks like you want to use string interpolation and get the from just params....
"#{string_to_Interplote}" # string interpolation
params[:param] # access param, where :param is the param to access