I have one quick question...based on this thread.
http://www.gravityhelp.com/forums/topic/cant-find-any-instructions-to-post-form-data-to-external-url
I am trying to have my Gravity Form post to an external form / CRM. I can get all of the fields to post...however I need to have the DATE fields post "separately". I can do this by creating 3 simple fields...and having each post...but I would much prefer the nice cleaner look of 3 smaller inline date boxes.
The form I am posting to is this: http://www.musicaledge1.djintelligence.com/message/
MY MAIN QUESTION is do I need to "break up" the date field in a fashion like this? This is a portion of my code in the functions.php that was added to post.
<input type="hidden" name="month" value="<?php echo $entry["13.1"] ?>" />
<input type="hidden" name="day" value="<?php echo $entry["13.2"] ?>" />
<input type="hidden" name="year" value="<?php echo $entry["13.3"] ?>" />
What can I replace the "13.1" "13.2" "13.3" with to make it work? Is it even possible to break up the date field?