Mar 4th, 2010, 3:40 PM
Ah ha! I figured out both issues.
BTW - This was for a WordPress site containing a multiple form process. I used separate page templates for each form as I couldn't use the typical plugins, coding forms in manually.
What solved both problems?
My original code for a form was this:
The traditional method documented in the tutorials wasn't working for me. I ended up trying this:
Both issues solved. The page now redirects as it should and I now have access to the $fields array information. Or I should say that the $fields array is now populating like it should.
BTW - This was for a WordPress site containing a multiple form process. I used separate page templates for each form as I couldn't use the typical plugins, coding forms in manually.
What solved both problems?
My original code for a form was this:
Code:
<form action="form4.php" method="POST">
The traditional method documented in the tutorials wasn't working for me. I ended up trying this:
Code:
<form action="" method="POST"">
Both issues solved. The page now redirects as it should and I now have access to the $fields array information. Or I should say that the $fields array is now populating like it should.