We are connecting to the retailer site message. How to make one?

tomaszjot

Membership Suspended
Dec 22, 2009
1,934
77
0
Albany Plantation
"We are connecting to the retailer site." message page

I've seen sites using it on redirect. Not sure how to code it, is it possible to do it with PHP only? Any tips much appreciated. Thanks
 


I'm not sure if I entirely get what you want but I remember seeing that on a site;

I think this was the code? adding that below the redirect script.




Code:
		<script language=javascript><!--
setTimeout('redir()', 5000);
 
function redir() {
	document.getElementById('paymentform').submit();
	}
		--></script>
 
I'm not sure if I entirely get what you want but I remember seeing that on a site;

I think this was the code? adding that below the redirect script.




Code:
        <script language=javascript><!--
setTimeout('redir()', 5000);
 
function redir() {
    document.getElementById('paymentform').submit();
    }
        --></script>

thanks