Skip to content

Instantly share code, notes, and snippets.

View Smus's full-sized avatar

Rasmus Bidstrup Smus

  • dwarf
  • Copenhagen
View GitHub Profile
@flowtwo
flowtwo / curl.php
Last active February 9, 2018 22:57
ClickDimensions Programmatic Form Capture via PHP cURL
// Define constants
$cd_url = 'https://analytics-eu.clickdimensions.com/forms/h/foobar'; // copy from ClickDimensions
$cd_accountkey = 'foo'; // copy from ClickDimensions
$cd_domain = 'bar'; // copy from ClickDimensions
// Build fields (array) to ClickDimensions, matching keys and values
$fields = array(
'FirstName' => 'John', // retrieve from posted form
'LastName' => 'Doe', // retrieve from posted form
'Email' => 'john@doe.com', // retrieve from posted form