Jump to content

quantity[38][none]


drisate

Recommended Posts

Hey guys,

I have a form with a input that looks like this

 

value="1" name="quantity[38][none]"

 

I need to retreve the value 1 and the [38] ... I found how to get the 1. this is what i am doing at the moment:

 

if ($_POST[quantity]!=""){

foreach ($_POST[quantity] as $value){

foreach ($value as $values){

echo $values."<br>";

}}}

 

But i also need to get the [38] value into a var to be able to make my update. 38 is the unique id i need to identify the row to update to 1.

 

Link to comment
Share on other sites

Bingo ... sorry found how

 

if ($_POST[quantity]!=""){

foreach ($_POST['quantity'] as $item_id => $attributes) {

foreach ($_POST['quantity'][$item_id] as $attributes => $quantity) {

$item_id = strip_tags($item_id);

$attributes = strip_tags($attributes);

$quantity = strip_tags($quantity);

 

echo "item_id: ".$item_id."<br>";

echo "attributes: ".$attributes."<br>";

echo "quantity: ".$quantity."<br>";

 

}

}

}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.