at0mic Posted March 3, 2011 Share Posted March 3, 2011 I’m trying to get the output of a dropdown menu into a php variable so I can use it to do queries etc. The following code does work, but the div tags are also saved in the variable. Is there another way of doing it without the div tags? Maybe by adding it to _GET in the onchange command. <select name='trade' onchange="document.getElementById('extra').innerHTML = this.value;"> <option value='item1'>item1</option> <option value='item2'>item2</option> <option value='item3'>item3</option> <option value='item4'>item4</option> </select> <?php $extra = '<div id="extra"></div>'; echo $extra ?> Quote Link to comment https://forums.phpfreaks.com/topic/229532-question-a-simple-way-to-get-dropdown-menu-output-into-a-php-variable/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.