I want to have 1 site that will load one site then I want it to load another site in the same window about 5 seconds after. So user joins my site and he looks at one site then 5 seconds later the page reloads and the user is now looking at a different site Any one able to help me? .
The only way I can help you is saying that such thing can be done via Javascript but I'm leaving now to abound in details. The script is posted in one of the Javascript Cut & paste websites if you want to try finding it, otherwise I will return later and if you haven't found this or another answer I will surely help
Place this in between <head> </head> tags <meta http-equiv="refresh" content="5; URL=urlhere"> Example: <meta http-equiv="refresh" content="5; URL=http://websitenamehere.com/"> This will make page reload to new after 5 seconds
you just add it to each site with the next url you want like this Site1: <?php header("refresh: 5; http://site2.com"; ?> Site2: <?php header("refresh: 5; http://site3.com"; ?> Site3: <?php header("refresh: 5; http://site4.com"; ?> ect. ect..