Hi,

> I'm getting result from the form. Are there any differences between
> using these 2 forms:
>
>
> $_POST['my_variable']
>
> or just
>
> $my_variable
>
> Is it more safety to use the first one?

        You have to use the first one if you have register_globals set to off.  If
you have it on, you can use either, however, the second is more insecure.

-Dan Joseph


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

Reply via email to