No problemo, ill try best I can,
1. user clicks a div type button (i.e: one)
2. div tells the action to go to links.php with the following code:
HTML Code:
<a href="links.php"><div id="button">one</div></a>
3. the php file has different redirect links in as follows: (not sure how to code so this is what I mean)
PHP Code:
<?php
/* Redirect browser */
/* Add LINK */
header("Location: one.html");
/* Redirect browser */
/* Add LINK */
header("Location: two.html");
/* Redirect browser */
/* Add LINK */
header("Location: three.html");
/* Make sure that code below does not get executed when we redirect. */
exit;
?>
4. user arives on intended page (i.e: one.html)
Hope this helps
Thanks
Bookmarks