I need to apend a certain word to the URL based on which option from a dropdown is selected, to create a custom confirmation screen URL. It doesn't matter which contact form I use (Contact Form 7, Gravity, etc). I've been looking online for solutions to this and found one that may help:
header( "Location: http://mysite.com/result/?" . $_POST['dropdown_name'] );
but I'm not sure where to put it. In Contact Form 7's submissions.php, I have this:
<input type="text" name="submit" class="tag" readonly="readonly" onfocus="this.select()" />
Could I use that in here somehow to redirect to a page based on the dropdown value selected? I am ok with pre-defining the URL values to be passed.