Hay All.
I'm currently working on a 'checkout' system, the actual payment and stuff is done by a third party.
When a user checks out using a form it sends all the GET data to some other site, lets call this 'checkout.com'. So the query string is 'checkout.com?var=1&var2=2'.
What i want to do is put a page between my form and this call to checkout.com, i want to be able to log this with google analytics.
Can i use "header("location: checkout.com")"? or will the javascript not get called to log the page?
Do i need to use a HTML redirect? or a javascript redirect? or will the php redriect work properly?
Thanks