Welcome Guest, Not a member yet? Register   Sign In
Trouble Inserting Checkbox Array
#4

[eluser]Jinme[/eluser]
Well, my code is one way. Your code is other way to the same place.
In your case PHP will automatically place the checked boxes into an array if you place [] brackets at the end of each name.
In this case cat_id is a Array and as such should be evaluated, you can use a foreach. Try this:
Code:
$categories = $data['cat_id'];
foreach ($categories as $category) {
   // Print value (only test)
   echo $category;
   // Insert here your code for save in the table
}


Messages In This Thread
Trouble Inserting Checkbox Array - by El Forum - 05-03-2010, 07:10 PM
Trouble Inserting Checkbox Array - by El Forum - 05-03-2010, 08:05 PM
Trouble Inserting Checkbox Array - by El Forum - 05-03-2010, 08:34 PM
Trouble Inserting Checkbox Array - by El Forum - 05-03-2010, 08:53 PM



Theme © iAndrew 2016 - Forum software by © MyBB