On the page there is a form with the data:
<form name="SendOrder" method="post" action="https://testpay.kkb.kz/jsp/process/logon.jsp"> <input type="hidden" name="Signed_Order_B64" size="100" value="{$bookingpay}"> <input type="hidden" name="email" value="{$val.email}"> <input type="hidden" name="Language" value="rus"> <input type="hidden" name="BackLink" value="http://suite/?page=payed"> <input type="hidden" name="PostLink" value="http://suite/?page=success"> After clicking, the form is sent to the payment https://testpay.kkb.kz/jsp/process/logon.jsp in the form is transferred to xml on my part. After passing the check and payment, the bank sends the xml "response" to the url. And the user returns to the site via BackLink. The routing page is described as follows:
case 'success': $response = successpay($_POST["response"]); $smarty->display('booking.tpl'); break; case 'payed': $smarty->display('successpay.tpl'); break; case 'failpay': $smarty->display('failure.tpl'); break; successpay is in the functions file common.php Questions: 1. Will the $ _POST ["response"] process occur? Because user does not access page = success page, but page = payed
