Are there any security or performance issues with using your GET and POST for updated values used within a script rather than passing the GET or Post array to a new array then using that array to store the new values.
The most obvious one is the fact that you are performing 2 actions when 1 will do
Why pass the array values in $POST / $GET to another array ?
There is no need to pass them off to another array
HTH
GM
ya that was kinda what i was getting at. i just wanted to make sure that there wasn't some property about the GET and POST arrays I was missing.