Created
December 14, 2017 06:50
-
-
Save ermst4r/775c2f53dead907d8ffc5db6d62f1f8d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$data = array ( | |
'email' => (isset($_GET['email']) ? $_GET['email'] : ''), | |
'voornaam' => (isset($_GET['firstname']) ? $_GET['firstname'] : ''), | |
'achternaam' => (isset($_GET['lastname']) ? $_GET['lastname'] : ''), | |
'geslacht' => (isset($_GET['gender']) ? $_GET['gender'] : ''), // m v | |
'geboortedatum' => (isset($_GET['dob']) ? $_GET['dob'] : ''), // dd-mm-yy | |
'actieid' => '4', | |
'campaign' => 'basebuilders', | |
'campaign_medium' => $campaign_medium, | |
'specification' => $specificatie, | |
'source' => 'basebuilders', | |
'fee' => $fee, | |
'content' => $specificatie, | |
'medium' => 'cpl', | |
'link' => $link, | |
); | |
$Engine->subscribeNewsLetter($data,'subscribe'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment