redirect2

[insert_php]
$answers = $_POST;
$url1 = “https://form.jotformeu.com/63242898385368”; // This is the URL address of the Form

$var1 = “?agencyFirst=”.urlencode($answers[agencyfirst]);
$var2 = “&agencyEmail=”.urlencode($answers[agencyemail]);
$url2 = $url1.$var1.$var2;
header(“location:$url2”);
[/insert_php]