Dear GravityForms,
I have came up with a little issue with my graphical layout and the use of gravityforms. In the layout u can define a subject for a Mailform (GravityForms) on the homepage.
Lets take an examlpe:
<form id="form1" name="form1" method="post" action="/contact">
<label>
<select name="choice" id="select">
<option value="First Choice">First Choice</option>
<option value="Second Choice">Second Choice</option>
<option value="Third Choice">Third Choice</option>
</select>
</label>
<label>
<input type="submit" name="button" id="button" value="Submit" />
</label>
</form>
Now the form name is "choice" so in the top of the page with the gravityform init requests this postname:
<?php
$choice = $_POST['choice'];
?>
Now since we have selected "Second Choice" I want the subject in Gravityform's dropdown to be selected to.
But actually i have no idea how i can edit this "dropdown" that gravityforms has.
Is this possible ? ifso: how, am i doing it wrong or did u made a much easier solution to do this?
Kind Regards,
Rian