![]() |
|
|
+ Search |
![]()
|
Jun 30th, 1999 19:40
Nathan Wallace, Steve Douville
The following code will run all my_func for all POST form variables:
while(list($key,$value)= each($HTTP_POST_VARS)){
$$key = $value;
my_func($$key);
}