SELECTED in drop down

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



the output are like this



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





please share your knowledge
#programming #drop #selected
  • Banned
    [DELETED]
  • 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>
    • [1] reply
    • 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!

Next Topics on Trending Feed