I have a script that adds data to a third-party website, only if I export it a Cross-Origin Request Blocked message is returned.
Is this to be circumvented by an extra parameter?
//=============================================================================
// LBR Add
// https://operator.ovocom.nl/ext/extlbroptionform/extentionId/382685
//=============================================================================
$col_1=$_GET['col1'];
$col_2=$_GET['col2'];
$col_3 =$_GET['col3'];
$form['lbroption']=$col_1;
$form['lbroptionprefix']=$col_2;
$form['extId']=$col_2;
$url="https://operator.ovocom.nl/ext/extlbroptionedit";
$handle = curl_init($url);
curl_setopt($handle, CURLOPT_POST, true);
curl_setopt($handle, CURLOPT_POSTFIELDS, $form);
$res =curl_exec($handle);
curl_close($handle);
//print_r($res);
//exit;
//echo "Data Sent Successfully!";
</div>