lets say i want to use:
extract($_POST);
eg:
$_POST = "field1 => value1
field2 => value2
field3 => value3";
how can i delete one of the rows when given the correct field name?
so if i wanted to delete field2, it would leave:
$_POST = "field1 => value1
field3 => value3";
if this is possible using a simple string, could it be possible to use an array so that both the array and the $POST can be cross-referenced and where there are the same fieldname in both it deletes it from the $POST array?