Hi
This looks much better. Inserting var_dump(get_defined_vars()); gave reams and reams of data, including everything I need, as follows:
["customers_email_address"]=> string(20) "[email protected]"
["order_total"]=> string(4) "6.94"
["currency"]=> string(3) "GBP"
So the next stage is just getting this data into the form.
Your instruction above was:
$Customer_email_address = $_SESSION['Customer_Email'] ; // This is what you identified as the needed field from the 'print_r()';
<input type="hidden" name="email" value="$Customer_email_address"/> ;
I assume this doesn't apply anymore (It doesn't seem to get the result anyway)
Can you suggest what needs to be entered into Value to get this last bit going?
Thanks


Reply With Quote


