echo "<p style='display:none'>";
$url = 'https://maker.ifttt.com/trigger/TRIGGER/with/key/MYKEY';
$ch = curl_init($url);
$xml = 'value1='.$_POST["name"].'&value2='.$_POST["overview"];
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
$response = curl_exec($ch); curl_close($ch);
echo "</p>";
So this may stem from my lack of understanding on CURL, I haven't done much with it. Is there a way to execute this request to IFTTT without the "You have successfully triggered..." showing up on my page? As you can see I have a sloppy fix that's working for now.