Jump to content

DlGar_26

Members
  • Posts

    3
  • Joined

  • Last visited

DlGar_26's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. 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
  2. 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 ?
  3. 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
×
×
  • Create New...