i have a form. after submiting it it's data send to another page with the post methos. in this page uses:
extract($_POST);
to extract all variables. now i want to have all varibales in function
fuction act() {
}
but it is hard to global each of variable in function :
fuction act() {
global $inuput1, $inuput2, $inuput3 ....
}
is there any way to i can global all $_POST varibales in fuction?
thanks