Forum Moderators: coopster
Here is what I have so far but it is not working. Thank you in advance.
<?
$ID = $_POST['UserID'] ;
$password = $_POST['UserPswd'] ;
$location = $_POST['select'] ;
if ( isset ($_POST['select']) && $_POST['select'] == 'https://www.XXXXXXXX.com/webApp/TEScreener3/700credit/index.jsp' )
header( "Location: $location?client=infocredit&user=$ID&password=$password" );
elseif ( isset ($_POST['select']) && $_POST['select'] == 'https://www.XXXX.com' )
header( "Location: $location?ACCOUNT=$ID&PSSWD=$password" ); elseif ( isset ($_POST['select']) && $_POST['select'] == 'https://www.XX.com' )
header( "Location: $location?UserID=$ID&UserPswd=$password" );
elseif ( isset ($_POST['select']) && $_POST['select'] == 'https://www.X.com' )
header( "Location: $location?user=$ID&password=$password" );
elseif ( isset ($_POST['select']) && $_POST['select'] == 'https://www.xs.com/screeningone/default.asp' )
header( "Location: $location?UserID=$ID&UserPswd=$password" );
?>
ie
if (( isset ($_POST['select'])) && ($_POST['select'] == '<YOUR_LOCATION_ID>' )) {
header( "Location: [XXXXXXXX.com...] );
die();}
Burner
<?
$ID = $_POST['UserID'] ;
$password = $_POST['UserPswd'] ;
$location = $_POST['select'] ;
if ($location == "https://www.#*$!x.com/webApp/TEScreener3/700credit/index.jsp")
header( "Location: $location?client=infocredit&user=$ID&password=$password" );elseif ($location == "https://www.x.com")
header( "Location: $location?ACCOUNT=$ID&PSSWD=$password" );
elseif ($location == "https://www.xxxxx.com")
header( "Location: $location?UserID=$ID&UserPswd=$password" );
elseif ($location == "https://www.xx.com")
header( "Location: $location?user=$ID&password=$password" );
elseif ($location == "https://www.xx.com/screeningone/default.asp")
header( "Location: $location?UserID=$ID&UserPswd=$password" );
?>