I'm having troubles getting one variable from an array.
If I echo the array it looks like this:
echo print_r($order_total_modules);
And it prints out this:
order_total Object (
[modules] => Array (
[0] => ot_quantity_discount.php
[1] => ot_shipping.php
[2] => ot_subtotal.php
[3] => ot_tax.php
[4] => ot_total.php
) )
I would like to print out only this part: [1] => ot_shipping.php
How can I achieve this?