Welcome Guest, Not a member yet? Register   Sign In
Form URI
#1

[eluser]bondjp[/eluser]
Hi, i'm trying to get my url to show something like this when the user submits a form:

http://example.com/controller/function/city/brand/model

Here's my view:
Code:
<?php
echo form_open('results');
echo form_dropdown('city', $city);
echo form_dropdown('brand', $brand);
echo form_dropdown('model', $model);
<input type="image" src="<?php echo base_url();?>images/search.png"  alt="Submit button" />
echo form_close();

How can i do it?
#2

[eluser]Rok Biderman[/eluser]
Well, there are 2 ways about it that seem reasonable to me. First is to do an action that takes values from the form and then redirects it. The other way I can think of is to build the action attribute using js (jquery). I think that it's all clientside so it should work.

Code:
function redirect()
    {  
    if($this->input->post('results'))
        {
          $city = $this->input->('city');
        $brand = $this->input->('brand');
        $model =$this->input->('model');
                redirect ('controller/yourfunction/' . $city . '/' . $brand . '/' . $model)
          }
    }

For js variant this link should get you started

http://www.coderanch.com/t/121860/HTML-J...orm-JQuery




Theme © iAndrew 2016 - Forum software by © MyBB