hi,
I have multiple input text boxes to update with one form as you can imagine from my title. Now I iterate records trough array
foreach ($checked as $id){
$row = Category::find_by_id($id);
$id = $row->id;
$name = $row->name;
and form input like this
<label>Category
<span class="small"> id <?php echo $id ?></span>
</label>
<input type="text" name="<?php $name ?>" id="<?php $name ?>" value="<?php echo $name ?>" />
}
Now I need to handle multple input values and update each.
if((isset($_POST['submit']))) {
........
}