I've seen several posts by others with this same problem, but no solutions that work for me. I have PHP5 and phpFormGenerator 2.09 provided by the web host. All of my variables appear to be correct in my form and match exactly (including capitalization) with what is in process.php. The form, thankyou.php, process.php and global_inc.php are all in the same folder. The form submits without error, and email is sent and the thankyou page displays, but the email and thankyou page only contain the field names and not the user-submitted field data. What is necessary to transmit the data?
thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I should clarify that they work without error if I take out the error trap for the empty fields. If I leave that in, it always says I have left out required information even though all fields have data, and since I see that no data is transmitted, the error is always triggered.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am sure the problem is a simple one but without access to your form files it is really hard to give you a specific answer. In the past I start by putting in debug statements within the error section.
if(error condition) {
print $variable1 name;
print $variable2 name;
etc…
}
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've seen several posts by others with this same problem, but no solutions that work for me. I have PHP5 and phpFormGenerator 2.09 provided by the web host. All of my variables appear to be correct in my form and match exactly (including capitalization) with what is in process.php. The form, thankyou.php, process.php and global_inc.php are all in the same folder. The form submits without error, and email is sent and the thankyou page displays, but the email and thankyou page only contain the field names and not the user-submitted field data. What is necessary to transmit the data?
thanks
I should clarify that they work without error if I take out the error trap for the empty fields. If I leave that in, it always says I have left out required information even though all fields have data, and since I see that no data is transmitted, the error is always triggered.
I am sure the problem is a simple one but without access to your form files it is really hard to give you a specific answer. In the past I start by putting in debug statements within the error section.
if(error condition) {
print $variable1 name;
print $variable2 name;
etc…
}
I'll try that. If interested, the form is available here: http://conniejadams.com/cardsbooks/index.html
(and process.php is in the same folder).
thanks.