我正在开发一个工作设备表格,将其结果输出到 CRM(客户关系管理)中。
我的问题是,我的客户希望在表单上的不同字段中输入后,将字段“街道地址、邮政编码和地区”一起输出到 CRM 的一个字段中。
所以我认为我应该使用 php,因为当用户单击提交时,它会获取每个字段的值并将其输入到我创建的隐藏字段中。出于某种原因,因为我不是 php 专家,所以它不起作用。它实际上并没有向 CRM 输出任何价值
这就是我到目前为止所得到的:
<form action="https://service.capsulecrm.com/service/newlead" method="post">
<input name="morada" id="morada" maxlength="255" title="" style="border-style: solid; border-width: 1px; border-color: #cccccc; position: absolute; margin: 0px; padding: 0px; width: 220px; height: 20px; font-family: Tahoma; font-size: 11px; color: #333333; background-color: #ffffff; z-index: 1; left: 189px; top: 397px;" value="" type="text">
<input name="postal" id="postal" maxlength="255" title="" style="border-style: solid; border-width: 1px; border-color: #cccccc; position: absolute; margin: 0px; padding: 0px; width: 220px; height: 20px; font-family: Tahoma; font-size: 11px; color: #333333; background-color: #ffffff; z-index: 1; left: 189px; top: 437px;" value="" type="text">
<input name="local" id="local" maxlength="255" title="" style="border-style: solid; border-width: 1px; border-color: #cccccc; position: absolute; margin: 0px; padding: 0px; width: 220px; height: 20px; font-family: Tahoma; font-size: 11px; color: #333333; background-color: #ffffff; z-index: 1; left: 189px; top: 467px;" value="" type="text">
<?php if ($_POST['submit']) {
$addressmorada = $_POST['morada'];
$addresspostal = $_POST['postal'];
$addresslocal = $_POST['local'];
echo "<input type='hidden' name='STREET' value='".$addressmorada. " " .$addresspostal. " " .$addresslocal."' />";
}
?>
<input name="submit" type="submit" value="Submit" style="
border-style: none; border-width: 0px; border-color: #888888; position: absolute; margin: 0px; padding: 0px; width: 93px; height: 33px; z-index: 1;
left: 433px; top: 1773px;
text-indent: 99999999999999px;
background: green;
cursor: pointer;
">
</form>
我将尝试解释我的 PHP 代码,
- if 语句在提交时调用函数。
- 变量获得不同的输入值。
- 我回显一个隐藏的输入字段类型,调用变量,以便所有信息在一个字段中输出到 CRM
我认为主要问题可能在数字 3 上!我会感谢任何帮助。抱歉,如果我的英语不好,那不是我的母语。