In my site i want to allow users to make their own form in html and submit it to my php script on my site and it will send all of the elements in $POST to their email. The problem comes in to play when they make their form however they want so i don't know the names for the fields in $POST when it's submitted. Is there a way to send all of the elements in the $_POST array without knowing the specific names of the fields that are submitted.
Thanks in advance for any help 🙂
help plz =\
You can use this function.
import_request_variables("gP", "var");
this will retrieve all the variables that are either post or get.
Hope that helps, -Blake