我编写了一个代码,使用ajax将一些php文件中的一些值发送到另一个php文件。我想发送这些值,但控件应该在第二个php文件中。并应该转到第一个php文件。
有人可以建议怎么做吗?
$.ajax({
type: "POST",
url: "request.php",
data: dataString,
cache: false,
success: function(resultt){
}
});
request.php
<?php
$formPostUrl = "https://www.citruspay.com/gggg";
$secret_key = "ggggggg";
$vanityUrl = "ggggg";
$merchantTxnId = "p".time();
$orderAmount = $_SESSION['pprice'];
$currency = "INR";
$data= $vanityUrl.$orderAmount.$merchantTxnId.$currency;
$returnUrl = "http://dfdfdfd/response.php";
$securitySignature = hash_hmac('sha1', $data, $secret_key);
?>
<div class="col-md-8 col-sm-6 col-xs-12">
<form align="center" method="post" action="<?=$formPostUrl?>">
<input type="hidden" id="merchantTxnId" name="merchantTxnId" value="<?=$merchantTxnId?>" />
<input type="hidden" id="orderAmount" name="orderAmount" value="<?=$orderAmount?>" />
<input type="hidden" id="currency" name="currency" value="<?=$currency?>" />
<input type="hidden" name="returnUrl" value="<?=$returnUrl?>" />
<input type="hidden" id="notifyUrl" name="notifyUrl" value="<?=$notifyUrl?>" />
<input type="hidden" id="secSignature" name="secSignature" value="<?=$securitySignature?>" />
<input type="hidden" id="email" name="email" value="<?=$email?>" />
<input type="hidden" id="phoneNumber" name="phoneNumber" value="<?=$tel?>" />
<input type="Submit" class="pay" value="Pay Now"/>
</form>
我想发送存储在dataString中的值,我也想让第二个文件是request.php,而不是第一个php文件。控件应转到第二个文件,并应返回第二个文件。