I'd like to have a custom registration confirmation page live within a WordPress site. I can provide a URL for this page to an external site. When the registration is successful the URL has several parameters, one of which is 'name' (which of course is a reserved word in WordPress) and a 404/page not found results.
The URL (get variables are coming from an external site, so I have no control over them) is something like:
http://example.com/registration-complete/?UID=K2PRL04LFYFNPY9&name=John&PIN=408446&conferenceUID=BYNMY9GILMCJWOBG&role=PARTICIPANT
What is the best way to handle such a situation? I'd like to be able to use the 'name' value in the page, so I don't want to just discard.
Thanks for any suggestions.
$_GETshould work fine. – Rutwick Gangurde Nov 16 '11 at 7:33