I'm trying to use the header() function to "invisibly" send form data to a third-party vendor while I continue to process the form info. on our website.
Since I haven't used the 'exit' statement I thought the code below the header() was supposed to execute but it isn't.
Am I on the right track? Here's a sample of the code...
<?
if ($news=="yes"){
header("Location: http://www.location.com/index.cfm?action=action&listID=$listID&firstName=$$first&lastName=$last");
}
?>
<html>
<body>
text here to confirm form submission info. here...
</body>
</html>
Thanks, Shawna