FlyerTalk Forums - View Single Post - Checkmytrip.com has been 'enhanced'
View Single Post
Old Jun 2, 2007, 5:50 am
  #77  
SLF
 
Join Date: Sep 2004
Location: Europe
Programs: Various
Posts: 3,087
Originally Posted by More Champagne Sir?
This URL will get you directly into the details of your booking:
Nice, thanks Which means I can do the following & still have my buttons

Code:
<script language="javascript" type="text/javascript">
function cmturl(pnr)
{
        var surname = "?????????"; // fill in your surname here
	return "http://www.checkmytrip.net/cmtservlet?" +
		"R=" + pnr + "&" +
		"L=GB&" +
		"N=" + surname;
}
</script>

...

<!-- copy this section to create a button for each PNR.  Replace the "??????" with the actual PNR -->
	<form method="post" action="" onsubmit="this.action=cmturl(this.submit.value)">
		<input type="submit" name="submit" value="??????">
	</form>
SLF is offline