Quick Redirect Question...

Status
Not open for further replies.

scottspfd82

New member
Dec 29, 2006
1,496
68
0
I've got to be the most technically impaired web designer on the planet. Since I suck so bad, can anyone tell me how to do this?

I'm guessing it's just a delayed redirect with an animated gif. Even knowing that much, I'm still pretty clueless. Appreciate the help.

-Scott
 


Let me try this again, after looking a little deeper....

Basically, there is no code/form/whatever. Your answer does not matter, sorta like the flash banner ads saying "shoot the rapper" or "spank the monkey." If they get you to click, you get the same result for each answer.

Page 1: Simple HREF IMG | HREF IMG | HREF IMG | HREF IMG with all HREF pointing to the same place.
Page 2: Show spinning disc and 'wait' message, then after a few seconds, a javascript image replacement says 'oh lookie, we found a GREAT deal for ya!' and then a timeout is set to redirect 3 seconds after that, to....
Page 3: The affiliate offer landing page.

See the http://www.wickedfire.com/affiliate-marketing/15247-excellent-use-landing-page.html discussion for more on this page.
 
Thanks for the reply. I realize that the answer doesn't matter. Basically, I want to do something similar. Like the user puts some info into a form, it doesn't matter what they put it, because my landing page will "find it."

I'm wondering how they do the delayed redirect. I want my page to perform the "searching" for a couple of seconds, and then the "Congratulations" for about 3 seconds, and then redirect to the offer page.

I should probably just google this when I get a few minutes. I figured it might just be an extremely simple line of code that someone could post for me.

Thanks again,

Scott
 
The lines of code they are using seem mighty similar to the other lines of code that others are using, so I think maybe they 'borrowed' also... :-)
 
The code inside the "results.php" of that landing page might be structured something like this:

Code:
<?php
echo '<table><tr><td><p><b>"calculating your best offer" text & graphics is displayed here</b></p></tr></td></table>';
sleep(10);
echo '<meta http-equiv="Refresh" content="7;url=http://www.somesite.com/affiliate-link.html">';
?>
This will display the intermediate "calculating best offer" page for ten seconds and then redirect to the target offer page.
 
  • Like
Reactions: scottspfd82
you can do a

Javascript
<?
sleep(10);
echo 'location.replace("http://www.destination.com")';
?>

No PHP just a straight 10 second delayed redirect
<meta http-equiv="refresh" content="10;url=http://www.destination.com">

another all php redirect
<?
sleep(10);
header("Location: htttp://www.destination.com");
?>

and there's more but that should get the job done for you.
 
Status
Not open for further replies.