So that's basically what I'm trying to do and from the pre-sales language it looks like I should be able to do it but I can't find any instructions (I'm smart so if they exist point me to them ;o) or other posts in the forum about it.
I have a mini-form that I set up that posts to the page with the gravity form and I have the values of 3 form fields I'm trying to pass. Let's just talk about First name and Last name.
I have under "Advanced" on the name field, in the Field Parameter Name boxes the following-
$_POST['first_name']
$_POST['last_name']
And my form is-
<form id="short_form" action="http://foo.com/subscribe" method="post">
<ul class="form_row">
<li class="form_label">First Name</li>
<li class="form_field"><input type="text" name="first_name" size="20" value="" /></li>
</ul>
<ul class="form_row">
<li class="form_label">Last Name</li>
<li class="form_field"><input type="text" name="last_name" size="20" value="" /></li>
</ul>
<ul class="form_row">
<li class="form_label">Email Address</li>
<li class="form_field"><input type="text" name="email" size="20" value="" /></li>
</ul>
<ul class="form_row">
<li class="form_label"> </li>
<li class="form_field"><input type="submit" value="Submit" name="submit" /></li>
</ul>
</form>
Am I missing something here? When I get to my gravity form onsubmit of this form, the gravity form fields are blank.
Thanks!