I'm using heredoc style syntax to create HTML formatted emails from form submissions. The heredoc is particularly nice for this because you can just cut the html of the form and paste in into the processing page (to keep the same html table layout).
The problem I'm having is that heredoc apparently doesn't support array variables. What I'd like to try to do is convert all form variables into variables named like this $POST_Field1, $POST_Field2, etc, etc.
Can anyone steer me in the right direction as to how to do that?
Thanks for any suggestions