On Mon, 6 May 2002, David J Jackson wrote:
> Thanks for your reply, but let me rephase the question.
> Let say I have a form with 50 fields on it do I have to:
> 
> echo $_POST['one']
> ....
> .....
> .....
> echo $POST['fifty']
> 
> 
> Or should I, could I use extract()?

You can use extract if you want, but be careful, because it has security 
implications. Make sure you explicitly declare starting values for all 
non-user-supplied variables within that scope at some point after calling 
extract.

miguel


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to