Jump to content

Remington Box

Members
  • Posts

    30
  • Joined

  • Last visited

Posts posted by Remington Box

  1. Maybe I am a blithering idiot... but I cannot get anything to show up in the select box...

    Here is my code and I have the <script> that Nabeel and RogerB edited posted at the bottom of the template

    <select name="bgimage" id="bgimage">
    <?php
    foreach($bgimages as $image)
    {
    if($userinfo->bgimage == $image)
    $sel = 'selected="selected"';
    else
    $sel = '';
    echo '<option value="'.$image.'" '.$sel.'>'.$image.'</option>';
    }
    ?>
    </select>
    <div id="preview_image"></div>
    

×
×
  • Create New...