Last active
August 29, 2015 13:56
-
-
Save donaldallen/8867659 to your computer and use it in GitHub Desktop.
Add record to TrackVia
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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