Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6665647
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:44:42+00:00 2026-05-26T02:44:42+00:00

I have a form which has a select box with name of cities from

  • 0

I have a form which has a select box with name of cities from the database. When i select a city and click continue, i want it to grab the city_id selected and redirect me to another page (:controller=> 'people', action => 'index') where i am going to make use of that city_id. How do i do that?Iam using RAILS 3.This is what i have..

View

 <%= form_for :cities, :url=>{:action =>"next"} do |f| %>
<%= collection_select(nil, :city_id, City.all, :id, :name ,:prompt=>"Select your city") %>
<%=f.submit "continue" %>
 <%end%>

Controller

class HomeController < ApplicationController
  def next
    @city = City.find(params[:city_id]) 
    redirect_to :controller => "people", :action => "index"
  end
  def new
    @city = City.new
  end
end

People Controller

class PeopleController < ApplicationController
  def index
    @city = City.find(params[:city_id])
  end
end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T02:44:43+00:00Added an answer on May 26, 2026 at 2:44 am

    You can do this by setting a session variable in your next action:

    class HomeController < ApplicationController
      def next
        @city = City.find(params[:city_id])
        session[:city_id] = @city.id
        redirect_to :controller => "people", :action => "index"
      end
      def new
        @city = City.new
      end
    end
    
    class PeopleController < ApplicationController
      def index
        unless session[:city_id].nil? || session[:city_id].blank?
          @city = City.find(session[:city_id])
          # do your stuff here
        end
      end
    end
    

    You can also do this with a flash variable, but session is likely the proper place.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a simple CRUD form which has one select list. However the
I have a form which has only tab control in it. I want to
I have a form which has a Combo Box Control. I have selected the
I have a maximized form which has Combo-Box control (docked in top-right) with 500px
Im using c# .net windows form application. I have created a database which has
I have a form which has a RichTextBox docked to the left and DataGridView
I have a form which has three inputs when the page loads -- 2
I have a form which has elements in a couple of divs. Based on
I have WPF Form which has many buttons with the same code. Appearance of
I have this html form which has options: <tr> <td width=30 height=35><font size=3>*List:</td> <td

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.