how to capture all fields in the $_POST
VARIABLE?
into an array?
$email = $_POST;
$emails = array_keys($email);
foreach($emails as $email) {
echo '$' . nl2br($email);
}
$emailadd = new email_save;
$emailadd->insert_email_into_database("POST VARIABLES GO HERE)
I'm trying to make an email list, name and email address,
how do I capture all the variables that where posted that can normal be accessed like
$_POST['email']
into an array so i can add them to the arguments in my functions?
My form field has 5 fields. The method is POST.
Instead of writing,
$email = mysql_real_escape_string($_POST['email']);
$firstname = mysql_real_escape_string($_POST['firstname']);
I'm trying to access all the values in the $_POST[] array;
So I can save time getting posted variables
and add functions to those variables like mysql_real_escape_string();
Other security measures will be figured out.
I want to be able to add a reffrence of the array to a function so I can add them to the database.