Can you please provide a simple use case for sending the username in a cURL request after it is submitted in the registration form?
Here is my cURL code:
$curl = curl_init();
curl_setopt($curl, CURLOPT_VERBOSE, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($curl, CURLOPT_TIMEOUT, 30);
curl_setopt($curl, CURLOPT_URL, '
OtherWebsiteToSendDataAfterRegistration.com/index.php?username='.$username
.'');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$Response = curl_exec($curl);
curl_close($curl);
The cURL code sends off the username value from registration and then gets a unique id back. I am going to take that id and use it elsewhere, but for now I need to know how I can use CB Auto Actions to take the username input from the registration field and then fire it away in this php code. Thank you for your time.