N8
01-04-2012, 08:24 AM
I'm looking to skip the $vbphrase[registration_complete] message after registration, and have the user directly sent to payments.php after hitting submit on register.php
What I've been doing for years is just placing a Javascript redirect in the registration_complete phrase, however I'm looking for a more seamless way of doing this.
Would this be the best way to do this? Inside of
if ($_POST['do'] == 'addmember')
Add header( 'Location: payments.php' ) ; Before
eval(standard_error(fetch_error('registration_comp lete', $username, $vbulletin->session->vars['sessionurl'], $vbulletin->options['bburl'] . '/' . $vbulletin->options['forumhome'] . '.php'), '', false));
}
This clearly does rdirect when I want it to, I'm just curious if it's stopping something else that's going on in the background from happening later in the script - or is this an ok way to go about it?
What I've been doing for years is just placing a Javascript redirect in the registration_complete phrase, however I'm looking for a more seamless way of doing this.
Would this be the best way to do this? Inside of
if ($_POST['do'] == 'addmember')
Add header( 'Location: payments.php' ) ; Before
eval(standard_error(fetch_error('registration_comp lete', $username, $vbulletin->session->vars['sessionurl'], $vbulletin->options['bburl'] . '/' . $vbulletin->options['forumhome'] . '.php'), '', false));
}
This clearly does rdirect when I want it to, I'm just curious if it's stopping something else that's going on in the background from happening later in the script - or is this an ok way to go about it?