Skip to content

Instantly share code, notes, and snippets.

Created September 2, 2017 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/19a5b759f767cef6cd40158b9a3f0577 to your computer and use it in GitHub Desktop.
Save anonymous/19a5b759f767cef6cd40158b9a3f0577 to your computer and use it in GitHub Desktop.
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>BP PGW Test</title>
<link href="Css/Style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table width="100%" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<table class="MainTable" cellspacing="5" cellpadding="1" align="center">
<tr class="HeaderTr">
<td colspan="2" align="center" height="25">
<span class="HeaderText">CallBack Params</span>
</td>
</tr>
<tr>
<td class="LabelTd">
<span>RefId</span>
</td>
<td>
<span><?php echo $_POST['RefId']; ?></span>
</td>
</tr>
<tr>
<td class="LabelTd">
<span>ResCode</span>
</td>
<td>
<span><?php echo $_POST['ResCode']; ?></span>
</td>
</tr>
<tr>
<td class="LabelTd">
<span>SaleOrderId</span>
</td>
<td>
<span><?php echo $_POST['SaleOrderId']; ?></span>
</td>
</tr>
<tr>
<td class="LabelTd">
<span>SaleReferenceId</span>
</td>
<td>
<span><?php echo $_POST['SaleReferenceId']; ?></span>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment