SELECTED in drop down

2 replies
Hi guys, i have a drop down code below



<select class="input" name="mod[cpu]">
<option value=""> </option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
the output are like this
$html .= ($content[cpu] ? '<div class="' . $this->switch_bg() . '"><strong>CPU:</strong> ' . @htmlspecialchars($content[cpu]) . '</div>' : '');



i want after the drop down choosed by user, it will add SELECTED next time they opening the drop down again

i am still dont know how to put the SELECTED there, please help what is the code to add SELECTED, i only have variable mod[cpu] and $content[cpu]


i already tried in bold below, but still not working

<select class="input" name="mod[cpu]" selected="$content[cpu]">
<option value=""> </option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>




please share your knowledge
#drop #selected
  • Profile picture of the author shabtay
    what do u have in $content[cpu]??

    any way... selected should be in the option tag and not in the select tag...

    <select class="input" name="mod[cpu]">
    <option value=""> </option>
    <option value="1">1</option>
    <option value="2" selected>2</option>
    <option value="3">3</option>
    </select>
    Signature
    Forex / Binary Options Solo Ads - High Quality Targeted Forex / Binary Options Solo Ads (500-10,000 unique clicks)

    Dedicated Email Servers - Bullet Proof Dedicated Email Servers
    {{ DiscussionBoard.errors[4949568].message }}
    • Profile picture of the author Tim Brownlaw
      i want after the drop down choosed by user, it will add SELECTED next time they opening the drop down again
      This would require either saving the information in a Database and retrieving it on redisplaying the page or using a session.

      Either way the option list needs to be generated in say PHP where it inserts the selected field in the appropriate entry so it appears as the chosen field.

      Here's a little demo which just demonstrates the use of a form with a select box. It might help you, but it seems you need a little more understanding of what you are currently using in your script...

      I've included a PDF with some explanation and the demonstration script.
      Hope that helps!
      {{ DiscussionBoard.errors[4954972].message }}

Trending Topics