At the moment I have a data entry form (client registration). When the client presses the submit button, a 'header' instruction is called which redirects the browser to an acknowledgement screen if the details have been entered correctly.
The acknowledgement screen should also display the client's 'Application ID' and 'Password'. However, I can't get it to display the information correctly. I assume that I'm not passing the variables correctly between the client registration and acknowledgement scripts.
I've tried using something like this:
$headervar = "Location: regcomplete.php?app_id=".$app_id."?pass=".$password;
header($headervar);
Any ideas?😕