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 4591318
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T22:22:38+00:00 2026-05-21T22:22:38+00:00

Whats the best way to handle the following situation in codeigniter: Home controller has

  • 0

Whats the best way to handle the following situation in codeigniter:

Home controller has an index action and a submit action.

The submit action is used for a form submission. I want to load the page through the index controller though – including after form submission i.e. with form errors data to repopulate form inputs on error etc.

Whats the best way to do this – without having the index controller handle the main page loading and the form submission.

  • 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-21T22:22:39+00:00Added an answer on May 21, 2026 at 10:22 pm

    If you redirect(), you won’t be able to use set_value() for re-populating your form fields.

    What’s easiest is having your index controller handle both the default load behavior, and the submission.

    function index()
    {
        if($this->input->post('foo'))
        { // something was POSTed
            $this->load->library('form_validation');
            //validation rules
        } else
        { // normal view
            //
        }
    
        $this->load->view('home');
    }
    

    Alternatively, you can just set up your index and submit controller, and have them point at the same view, which detects if validation_errors() are set and re-populates form fields accordingly.

    Third option (hackish): you could use flashdata to keep submission errors and the submitted form values across a redirect back to index. Something like this would work:

    $this->session->set_flashdata('errors', $validation_errors());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the best way to handle following situation? A dropdown(for master table) is
Given the following class, what is your opinion on the best way to handle
What is the best way to handle a big team that has access to
What is the best way to handle the following database search scenario using asp.net
I am trying to see what is the best way to handle the following
just wondering the best way to handle the following, as there seems to be
What's the best way to handle translations for stock text in a SSRS .
What's the best way to handle a visitor constructing their own URL and replacing
What's the best way to handle data entered through dynamically generated controls in ASP.NET?
What's the best way to handle an expired password in an ASP.NET MVC application?

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.