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
https://forums.phpfreaks.com/topic/126372-quantity38none/
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
https://forums.phpfreaks.com/topic/126372-quantity38none/#findComment-653513
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.