usawh Posted September 6, 2009 Share Posted September 6, 2009 Hi, How to I edit this script so that everytime a user go to my site they get a ramdom fixed background. Here is the script.. <style type="text/css"> body { background-attachment:fixed; background-image:url(background_image.jpg); } </style> regards, usawh Quote Link to comment https://forums.phpfreaks.com/topic/173277-random-fixed-background/ Share on other sites More sharing options...
kratsg Posted September 6, 2009 Share Posted September 6, 2009 Hi, How to I edit this script so that everytime a user go to my site they get a ramdom fixed background. Here is the script.. <style type="text/css"> body { background-attachment:fixed; background-image:url(background_image.jpg); } </style> regards, usawh Assuming this involves PHP? $bg_arr = array("background1.jpg","something.gif","another.png"); shuffle($bg_arr); ?> <style type="text/css"> body { background-attachment:fixed; background-image:url('<?php=$bg_arr[0] ?>); } </style> Just a quick, way... shuffle($arr) shuffles the array so when you call it again, it's shuffled. Quote Link to comment https://forums.phpfreaks.com/topic/173277-random-fixed-background/#findComment-913387 Share on other sites More sharing options...
usawh Posted September 6, 2009 Author Share Posted September 6, 2009 Hi, I tried it but got this error message " Parse error: syntax error, unexpected '=' in /home/content/h/i/l/index2.php on line 7" regards, usawh Quote Link to comment https://forums.phpfreaks.com/topic/173277-random-fixed-background/#findComment-913393 Share on other sites More sharing options...
kratsg Posted September 6, 2009 Share Posted September 6, 2009 <?php $bg_arr = array("background1.jpg","something.gif","another.png"); shuffle($bg_arr); ?> <style type="text/css"> body { background-attachment:fixed; background-image:url('<?={$bg_arr[0]} ?>'); } </style> I forgot a couple of things, try now. Quote Link to comment https://forums.phpfreaks.com/topic/173277-random-fixed-background/#findComment-913394 Share on other sites More sharing options...
thebadbad Posted September 6, 2009 Share Posted September 6, 2009 Or use proper syntax (and I prefer array_rand()): <?php $bg_arr = array('background1.jpg', 'something.gif', 'another.png'); echo '<style type="text/css"> body { background-attachment:fixed; background-image:url("' . $bg_arr[array_rand($bg_arr)] . '"); } </style>'; ?> If people would just stop using short tags and echo shortcuts, this post wouldn't be necessary. Quote Link to comment https://forums.phpfreaks.com/topic/173277-random-fixed-background/#findComment-913492 Share on other sites More sharing options...
usawh Posted September 6, 2009 Author Share Posted September 6, 2009 Thank you very much it works now. Usawh Quote Link to comment https://forums.phpfreaks.com/topic/173277-random-fixed-background/#findComment-913514 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.