如何在 civicrm 中插入自定义字段值?

发布于 2024-10-15 23:41:31 字数 77 浏览 1 评论 0原文

大家好,我为联系人创建了一些自定义字段。如何将值插入到该自定义字段中。我尝试使用参数传递自定义值。但它没有插入。如何插入该值。 请帮助我。

Hello friends I created some custom fields for contacts. How can I insert values to that custom fields. I tried to pass the custom values with params. but its not inserting. how to insert that values.
Kindly help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木格 2024-10-22 23:41:31

// 定义联系人和初始主要位置的输入参数 像

$params = array(
                'first_name'    => 'Dan',
                'custom_{put your custom filed id here}' => "custom field value1",
                'custom_{put your custom filed id here}' => "custom field value2"
                );
$contact =&civicrm_contact_create( $params );
print_r($contact);

这样我们可以将值插入到自定义字段

// Define input parms for the contact and initial primary location

$params = array(
                'first_name'    => 'Dan',
                'custom_{put your custom filed id here}' => "custom field value1",
                'custom_{put your custom filed id here}' => "custom field value2"
                );
$contact =&civicrm_contact_create( $params );
print_r($contact);

Like this way we can insert value to custom fields

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文