I use iFrames to display secure forms within our websites so that I can have the forms stored on a secure server but the websites themselves don't have to be.
Once the user submits the forms and the data has been put in the database I would like to have them redirected to a thank you page on the website.
I have tried
header('LOCATION: http://www.site.net');
and
echo '<META HTTP-EQUIV="Refresh" Content="0; URL="http://www.site.net">';
I have also searched through this site and can't find an answer to this.
Thank you in advance for any help you can offer.