Thank you for your previous answer, I have one more question..
I have found the values I need in PHP.. how do I reference them? Ive come up with:
Code:
[_userinfo] => Array
(
[extra] => a:2:{s:17:"additional_fields";a:2:{i:0;a:4:{s:7:"fieldid";s:1:"1";s:7:"section";s:1:"A";s:5:"value";s:7:"ezwatch";s:5:"title";s:37:"What search term was used to find us?";}i:1;a:4:{s:7:"fieldid";s:1:"2";s:7:"section";s:1:"A";s:5:"value";s:5:"Yahoo";s:5:"title";s:31:"What search engine did you use?";}}s:8:"tax_info";a:5:{s:26:"display_taxed_order_totals";s:1:"N";s:31:"display_cart_products_tax_rates";b:0;s:14:"taxed_subtotal";s:7:"1642.00";s:25:"taxed_discounted_subtotal";s:7:"1642.00";s:14:"taxed_shipping";s:5:"84.25";}}
I need to be able to call extra.. How do I go about this in PHP?
Ive tried $_userinfo[extra] but that doesnt seem to do anything..