Houston, I seem to have a problem...
I made a website for a customer who wants to host his website on his own server. No problem, except for the fact that I want the PHP-code to remain on my own server.
Now what happens is that when people register on this website, they receive an e-mail with a link they have to click, to confirm their registration.
The ideal situation would be for that link to point to a file on the customer's server, then redirect to a PHP-file on mine, so it can be processed in a database-query, and then redirect to a Thank You file on the customer's server again. Now this does not seem to work. My files work fine if I keep the URL's all on my own server, but it does not work if I point the first URL to the customer's server, from there redirect back to mine (passing an ID) and then redirect back to their server to show the Thank You file.
My question: is it impossible to pass ID's between different servers in the URL querystring?
Joyce