matfish Posted October 24, 2006 Share Posted October 24, 2006 Hi, Iv got a list of URLs in an array which I randomly choose, but how do you navigate to it? Like when Iv randomly chosen one, how do I kinda "Click it"? Many thanks Quote Link to comment https://forums.phpfreaks.com/topic/24909-clicking-a-new-link/ Share on other sites More sharing options...
xsist10 Posted October 24, 2006 Share Posted October 24, 2006 What do you mean click it?Do you want the browser to go to the URL?Do you want to check if the URL is valid?Do you want to get the page the URL is pointing to? Quote Link to comment https://forums.phpfreaks.com/topic/24909-clicking-a-new-link/#findComment-113531 Share on other sites More sharing options...
HuggieBear Posted October 24, 2006 Share Posted October 24, 2006 Just echo it in a link...[code=php:0]echo "<a href=\"{$array[0]}\">My Link</a>";[/code]RegardsHuggie Quote Link to comment https://forums.phpfreaks.com/topic/24909-clicking-a-new-link/#findComment-113534 Share on other sites More sharing options...
matfish Posted October 24, 2006 Author Share Posted October 24, 2006 Hi, thanks for the replies.I have a list of URLs which are all valid etc.. I just want to randomly select one and automatically navigate to it (so dont want to manually click it)Many thanks Quote Link to comment https://forums.phpfreaks.com/topic/24909-clicking-a-new-link/#findComment-113546 Share on other sites More sharing options...
HuggieBear Posted October 24, 2006 Share Posted October 24, 2006 In that case use the header() function.[code=php:0]header("Location: $array[0]");[/code]RegardsHuggie Quote Link to comment https://forums.phpfreaks.com/topic/24909-clicking-a-new-link/#findComment-113551 Share on other sites More sharing options...
matfish Posted October 24, 2006 Author Share Posted October 24, 2006 Thanks for the reply,There no other way? How about selecting a URL and kind of making a iframe navigate to it?Thanks Quote Link to comment https://forums.phpfreaks.com/topic/24909-clicking-a-new-link/#findComment-113567 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.