Retrieving drop-down-menu data

hbk

hbk

@hbk-UY6MQq Oct 25, 2024
hey guys.

this may be very trivial, but i cant figure out a way...

i want to retrieve the data entered by the user through a drop-down-menu using POST method.

I am unable to do so...

kindly suggest

P.S. I am how to retrieve text-field data from a form, but not drop-menus....

thx...

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • Prasad Ajinkya

    Prasad Ajinkya

    @prasad-aSUfhP Jul 3, 2008

    Its the same way hbk. In PHP, you rerieve only the value field of selected item in the drop down box.

    So lets say, if the dropdown box have a following dropdown box
    <select name="yourBox">
    <option value="1">A</option>
    <option value="2">B</option>
    <option value="3">C</option>
    <option value="4">D</option>
    </select>
    , then when you select C and submit, you can access $yourBox as you would for your text inputs, and the value of the same would be 3.

    Capisce?