Skip to content

Instantly share code, notes, and snippets.

@donaldallen
Last active August 29, 2015 13:56
Show Gist options
  • Save donaldallen/8867659 to your computer and use it in GitHub Desktop.
Save donaldallen/8867659 to your computer and use it in GitHub Desktop.
Add record to TrackVia
<?php
$record = array(
'First Name' => 'Donald',
'Last Name' => 'Allen',
'Email' => '[email protected]',
'Phone Number' => '(780) 429-9993',
'Organization New' => 'Top Draw',
'Title' => 'Senior Web Developer',
'City' => 'Edmonton',
'Address Line 1' => '10210 111 Street',
'Postal Code' => 'T5K 1K9',
'Alumni' => 'No',
'Sex' => 'Male',
'Cell Phone' => '780-695-6069',
'Birthday' => '1981-10-29T12:00:00-0700',
'Interview Question 1' => 'Test',
'Interview Question 2' => 'Test',
'Interview Question 3' => 'Test',
'Interview Question 4' => 'Test',
'Privacy Policy' => 'Yes',
'VCA Name' => 'Donald Allen',
'VCA Date' => 'Feb 4, 2013',
);
$tv->addRecord('36127', $record);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment