From a php script I'm returning 3 values : all are transitioning over without any difficulty.
if(data.code == 600){
var PNRRef = data.locator;
var Lname = data.lname;
What I am trying to do is use these two var values in my redirect link and can't seem to figure it out :
window.location.href = '/US/en/local/res/MyReservation.php?PNRRef="PNRRef"&Lname="Lname"';
But it's not outputting correctly... Would anyone have a tip about how to integrate these ?
Thanks!