| 5 | | We added a select field with some options, the values of these options are URLs and when selected it redirects the user to the URL in the value, these URLs are concatenated strings based on some PHP conditions and add query args like '&something=1' to the string which is then set as the value of the select options, the build of the URL and the functionality which does the redirect upon selection are in an inline `<script>` tag, the resulting URLs don't remain `&something=1` and get converted to `#038;something=1`, this then means we cannot use the `$_GET['something']`. |
| | 5 | We added a select field with some options, the values of these options are URLs and when selected it redirects the user to the URL in the value, these URLs are concatenated strings based on some PHP conditions and add query args like `&something=1` to the string which is then set as the value of the select options, the build of the URL and the functionality which does the redirect upon selection are in an inline `<script>` tag, the resulting URLs don't remain `&something=1` and get converted to `#038;something=1`, this then means we cannot use the `$_GET['something']`. |