我在前端有一个表格,我希望用户填写,当他们有时,我想保存数据,并在提交帖子之前重定向他们付款。如何在他们付款之前保存数据?
我有一个cookie,可以让我知道他们何时成功付款。如果他们尚未付款,则表单操作如下所示:
$form_action = get_bloginfo(\'template_url\').\'/Checkout/paypal_ec_redirect.php\';
我可以通过某种方式将这些post变量传递到上面的页面吗?
$new_post = array(
\'post_title\' => $_POST[\'title\'],
\'post_content\' => $_POST[\'description\'],
\'post_status\' => \'draft\',
\'post_type\' => \'listing\'
);