我们希望将表单发送给Pardot作为潜在客户,然后也将其发送到我们的数据库。当我尝试隐藏的iframe技巧时,出现了网络错误(ERR_NAME_NOT_RESOLVED)。
https://help.salesforce.com/articleView?id=000313655&type=1&mode=1
我遵循了该页面上的建议,但未提交。
<?php
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$email = $_POST['email'];
$phone = $_POST['phone'];
echo '<iframe src="https://mypardot.url.com/l/123/2009-04-28/ABCDE?first_name='.$first_name.'&last_name='.$last_name.'&email='.$email.'&phone='.$phone.'" width="1" height="1"></iframe>';
?>
我获得正确的URL,它看起来正确。
答案 0 :(得分:0)
您可以将数据从PHP脚本直接发布到自己的数据库中(在iframe渲染之前)。
讨厌成为那个家伙...我假设您提供的示例是简短示例VS您实际使用的代码。卫生和验证将非常重要!