gpt4 book ai didi

php - Paypal 数据传输后直接到新的html页面

转载 作者:太空宇宙 更新时间:2023-11-03 15:55:01 25 4
gpt4 key购买 nike

当用户完成 Paypal 交易时,它会将他们发送到我网站上处理交易的页面。但是屏幕是白色的,没有源代码出现。我知道随着我的数据库更新,脚本正在执行 SQL 语句。然后脚本应该按照其 header 输出指示指向页面,但我想知道因为 Paypal 两次访问此页面可能会把它搞砸。

这是返回脚本:

        <?php 
error_reporting(E_ALL); ini_set('display_errors', 1);
// The custom hidden field (user id) sent along with the button is retrieved here.
if($_GET['cm']) $user=$_GET['cm'];
// The unique transaction id.
if($_GET['tx']) $tx= $_GET['tx'];
$identity = 'TOKEN VALUE';
// Init curl
$ch = curl_init();
// Set request options
curl_setopt_array($ch, array ( CURLOPT_URL => 'https://www.paypal.com/cgi-bin/webscr',
CURLOPT_POST => TRUE,
CURLOPT_POSTFIELDS => http_build_query(array
(
'cmd' => '_notify-synch',
'tx' => $tx,
'at' => $identity,
)),
CURLOPT_RETURNTRANSFER => TRUE,
CURLOPT_HEADER => FALSE,
// CURLOPT_SSL_VERIFYPEER => TRUE,
// CURLOPT_CAINFO => 'cacert.pem',
));
// Execute request and get response and status code
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
// Close connection
curl_close($ch);
if($status == 200 AND strpos($response, 'SUCCESS') === 0)
{

include ("dbconnect.php");
$query="UPDATE users SET paid='1' WHERE userid='$user'";
$result=mysqli_query($con,$query);
exit(); // Quit the script.
header('Location: http://www.xxxxxxxxxxx/php/process_paypal_success.php');
}
?>

这是返回脚本也应该发送给用户的页面:

          <?php 
ob_start();
session_start();
require_once ('verify.php');
$page_title = 'settings.php';


$sid = session_id();
$first_name=$_SESSION['first_name'];
$last_name=$_SESSION['last_name'];
$email_address=$_SESSION['email_address'];


include ("dbconnect.php");
$query="SELECT * FROM users WHERE email_address='$email_address'";
$result=mysqli_query($con,$query);
$data=mysqli_fetch_assoc($result);
$userid = $data['userid'];
$password = $data['password'];
$signup_date = $data['signup_date'];
$last_login = $data['last_login'];

// Check for a $page_title value:
if (!isset($page_title)) {
$page_title = 'User Registration';
}

// If no first_name session variable exists, redirect the user:
if (!isset($_SESSION['email_address'])) {

$url = BASE_URL . ''; // Define the URL.
ob_end_clean(); // Delete the buffer.
header("Location: $url");
exit(); // Quit the script.

}
?>
<?php
$title="title here" ;
$description="You have successfully submitted your payment and registered for the event" ;
include( "header.php");
?>
<body>

最佳答案

您在 header 之前退出,因此不会发生重定向。

一旦退出,就是这样;您的其余代码将不会执行。

因此,更改脚本的这一部分:

exit(); // Quit the script.
header('Location: http://www.xxxxxxxxxxx/php/process_paypal_success.php');

到:

header('Location: http://www.xxxxxxxxxxx/php/process_paypal_success.php');
exit(); // Quit the script.

exit(); 放在 header 之后。

引用:

exit — Output a message and terminate the current script

旁注:您也可以只使用 exit;,不需要 ()

除非你想显示一条消息:

or exit("unable to open file ($filename)");

来自手册^

因此在您的情况下,您无法显示其他消息,因为您使用的是 header 。


脚注:

您的代码容易发生 SQL 注入(inject)。最好使用准备好的语句。

引用:

关于php - Paypal 数据传输后直接到新的html页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33058869/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com