I have looked at the code and in the notification area, when selected, it says:
{Name (First):12.3}
{Name (Last):12.6}
So for my gform_after_submission, I have:
$entry[12.3]
$entry[12.6]
However, neither first or last name are coming through.
I have looked at the code and in the notification area, when selected, it says:
{Name (First):12.3}
{Name (Last):12.6}
So for my gform_after_submission, I have:
$entry[12.3]
$entry[12.6]
However, neither first or last name are coming through.
Try quoting the 12.3 and 12.6, like this:
[php]
$entry['12.3'];
$entry['12.6'];
That was stupid. Thanks!