hi there, im creating new condition where if user exist in system2 the login controller will fetch the data from the system2 and auto register the user. so how can i auto submit the fetch data to rt='account/create'?
below is my code. i just need to post the data to account/create
//execute the POST request
$result = curl_exec($ch);
//close cURL resource
curl_close($ch);
if($result=="false"){
header('Location: ' . url.'?rt=account/login&false_entry_login_detail=1');
die();
}
$user_data = json_decode($result);