Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
change background image
Old 08-25-2005, 07:59 PM change background image
Junior Talker

Posts: 1
Trades: 0
Hi,

I'm trying to let the user of the site I'm working on change the background image using a drop down box (like on http://ourdisco.com/) I've found all sorts of scripts that will let me change the background by clicking a link etc. but I can't work out how it's done with the list box. From what I can gather a combo of j/script and css? Any help would be much appreciated

I hope this is in the right forum! thanks
redguy is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 08-27-2005, 01:14 AM
Experienced Talker

Posts: 47
Trades: 0
Its not too hard, they're using ASP and I'm not too familiar with it but I can tell you how to do it in PHP.

Basically what they do is upon change they read the POST info and select accordingly. So the dropdown would be somethign like this.

HTML Code:
<form method="POST" action="default.php">
<select name="background" onchange="this.submit()">
<option value="image.jpg">Image #1</option>
<option value="image2.jpg">Image #2</option>
</select>
And on the default.php page have this code:
PHP Code:
if (isset($_POST['background']))
{
  
$bg_img $_POST['background'];
}
else
{
  
$bg_img 'default.jpg';

And wherever you set the background, like if you were to set it on the body tag you'd make the tag this:
HTML Code:
<body background="<?php echo $bg_img ?>">
My javascript on the dropdown may be incorrect but you can find out online. Hope this helps
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
Synchronize is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to change background image
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.10619 seconds with 12 queries