Jump to content

PHP Shuflle with iframe


DlGar_26

Recommended Posts

Hello Community I'm a newbie with coding , so i hope you guys can help me out so i have for example 3 iframe codes1. <iframe src="http://www.google.com"></iframe>2. <iframe src="http://www.yahoo.com"></iframe>3. <iframe src="http://www.bing.com"></iframe> so i want to shuffle these 3 iframes but i do not know how ?i have tryed using this code but a total fail

<?php$iframe = array();  $iframe[0] = '<iframe src="http://www.google.com"></iframe>';  $iframe[1] = '<iframe src="http://www.yahoo.com"></iframe>';  $iframe[2] = '<iframe src="http://www.bing.com"></iframe>';shuffle($iframe);echo $iframe[0];?>

it did not worked for me , do you have any idea how to get it work ? Regards

Link to comment
Share on other sites

Hello "justsomeguy" thank you for your fast reply . that's a bit embarrassing .when i use the code first it doesn't shuffle them and second it shows all 3 iframes which i don't want , i want 1 iframe to be shown that got shuffled from those 3 iframes available in the code is there any other option/script i might use ?

Link to comment
Share on other sites

Hello i have found the problem , problem was that this code should start in an .html file which the php code could not be read properly.so i creat a .php file and add the code there and called it with an another iframe in the .html file, now its working my problem was that i wantet to run a .php code in a .html file and this is the complete code

<?php$iframe = array();$iframe[0] = '<iframe src="http://www.bing.com" allowtransparency="true" frameborder="0" scrolling="auto" rel="nofollow" style="width:100%;height:100%"></iframe>';$iframe[1] = '<iframe src="http://www.google.com" allowtransparency="true" frameborder="0" scrolling="auto" rel="nofollow" style="width:100%;height:100%"></iframe>';$iframe[2] = '<iframe src="http://yahoo.com" allowtransparency="true" frameborder="0" scrolling="auto" rel="nofollow" style="width:100%;height:100%"></iframe>';$numbers = range(0, 2);shuffle($numbers);foreach ($numbers as $number):endforeach;echo $iframe[$number];?>

Thank you

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...