<?php
if($result_array[\'ACK\']== \'Success\'){
global $wpdb;
$wpdb->insert(\'wp_paypal_payment\', array(
\'amount\' => $result_array[\'AMT\'],
\'post_id\' => $_REQUEST[\'post_id\'],
\'firstname\' => $_REQUEST[\'first_name\'],
\'lastname\' => $_REQUEST[\'last_name\']
));
wp_redirect( get_page_by_title( \'thank-you\' ) );
}else{
header("Location : http://localhost/mysite/faq");
}
?>
我的查询正在运行,但我不知道如何在我的页面中重定向并在wordpress中显示任何我的页面内容数据。所以请帮帮我。