Hello every body
I want to filter all the $_POST variables thru a functiion and want to return the filtered keys along with their values.
below is the sinppet that what i need actually.
i want you guys to please give me hint for making the filter() function;
Regards
Bhupinder
I want to filter all the $_POST variables thru a functiion and want to return the filtered keys along with their values.
below is the sinppet that what i need actually.
PHP:
$field = $_POST; // all the POST fields
$filtered = filter($field);
$field1 = $filtered['field1'];
$fieldn = $filtered['fieldn']; // and so on
i want you guys to please give me hint for making the filter() function;
Regards
Bhupinder





