Welcome Guest, Not a member yet? Register   Sign In
DB Update with multiple inputs in a loop
#9

[eluser]Ludovic-r[/eluser]
Just modified a bit my view form to get this :

Code:
echo form_open('admin/update_categories/');
    
    if (isset($result)) {
            
        $i = 0;
            foreach ($result as $row) {

            $i++;
            $test = array($i => 'category_name');
            echo form_input($test[$i].'_'.$i ,$row->category_name);
        
        }
    } else { echo 'no categories'; }

    echo form_submit('','Save');
    echo form_close();

Which gave me something like this :

<input type="text" name="category_name_1" value="myname">
<input type="text" name="category_name_2" value="anothername">
<input type="text" name="category_name_3" value="andanotherone">
... there are as many input field as entries in the DB

These inputs can be edited to change the name of the category.


Ok now my DB Table called 'ft_categories' looklike this :

id = '1' category_name ="myname"
id = '2' category_name ="anothername"
id = '3' category_name ="andanotherone"

The only thing I need is when I press "Submit" the entire table updates with the new entries

Any ideas please?


Messages In This Thread
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 04:21 AM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 05:16 AM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 05:56 AM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 05:57 AM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 02:24 PM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 02:25 PM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 04:10 PM
DB Update with multiple inputs in a loop - by El Forum - 05-24-2011, 04:42 AM
DB Update with multiple inputs in a loop - by El Forum - 05-24-2011, 02:30 PM
DB Update with multiple inputs in a loop - by El Forum - 05-24-2011, 08:11 PM
DB Update with multiple inputs in a loop - by El Forum - 05-25-2011, 01:10 AM
DB Update with multiple inputs in a loop - by El Forum - 05-25-2011, 11:28 AM
DB Update with multiple inputs in a loop - by El Forum - 05-26-2011, 02:26 AM
DB Update with multiple inputs in a loop - by El Forum - 05-26-2011, 02:45 AM
DB Update with multiple inputs in a loop - by El Forum - 05-26-2011, 08:53 AM
DB Update with multiple inputs in a loop - by El Forum - 05-27-2011, 02:20 AM
DB Update with multiple inputs in a loop - by El Forum - 05-27-2011, 06:52 AM
DB Update with multiple inputs in a loop - by El Forum - 05-27-2011, 11:52 PM
DB Update with multiple inputs in a loop - by El Forum - 05-31-2011, 01:43 AM



Theme © iAndrew 2016 - Forum software by © MyBB