Saturday, 20 August 2016

php - Send Bootstrap Button-Group value in a form with Get or Post



I created this form with bootstrap 3:



                        





















Im using the button group, because it looks better then a dropdwon menue or just checkboxes.



I tried to send the btn-group value by the _get methode but it does not work.
So how can in submit the value with my _get methode to my PHP file?




Thank you for helping


Answer



I found a solution



                            













No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...