Hi Eric,
I think I did get it to work (after hours and hours of trial and error).
I was very hung up on the if statement you posted and trying to produce and store a session value, until I went with another if statement and no session value. I would like to run it by you, just to make sure I am not breaking any php-rules.
First I tried to get the recordset to return only the value of the selected shipping country. I did that with a WHERE clause, setting the runtime value of the variable to $_POST['shipping_country'].
Then I wrote the if statement like this, so I could compare the value of the column is_European that was returned by the recordset to 1:
if($row_rseurope['is_European'] == 1){
header("Location: confirm.php");
}
Finally I reset the redirect in the store summery behavior on confirm.php to go to success.php for European Union countries, and on confirm2.php to go to success2.php.
What do you think?


