Someone who has tried PayPal's sandbox, I need to know how to test the shipment of multiple cart products to variable num_cars_items
, and receive them in the same variable. Since when I simulate it in the sandbox by putting several items as products, it does not send them; and when I put only one, it comes to me and stores it in the database.
$num_cars_item = $_post['num_cars_item'];
for($i=1;$i<=num_cars_item;$i++){
$item.$i
}
In theory this works but I do not receive anything in the varible car_item
. Does anyone know how to test the catwalk with several items?