Flexigrid help needed on items using jquery

How do I read the contents from this table “items”?

$items = rtrim($_POST[‘items’],“,”);
I really need some help on how I can insert multiple selection, the same way how the delete.php works on delete multiple selection.

http://codeigniter.com/forums/viewthread/148425/

I believe it is some php to loop through the array items. I tried a foreach loop but in vain.

Help pls.

Rather than linking to your question on another forum, you’ll get more answers if you give code here.

As for your problem, can you post the output of:

echo '<pre>'; var_dump($_POST); echo '</pre>';

That way we can see how the $_POST array is organised and we can then help you build that foreach array you need.