| 
 Posted by deko on 08/23/06 07:13 
Okay, I've got the combo box on the page: 
 
 <select name=color> 
     <option value=yellow>yellow</option> 
     <option value=white>white</option> 
     <option value=white>gray</option> 
 </select> 
 
And I have this at the top of the page in the head section: 
 
   $background = trim($_POST['color']); 
   [and then the if-else statement with the style directives] 
 
My question is this: 
 
How do I make the page refresh after the user selects the color preference?  Do  
I need to put the combo box inside a form?  I tried this: 
 
   <select name=color onChange="post"> 
 
but no luck.
 
  
Navigation:
[Reply to this message] 
 |