Re: [PHP] function --> global variables
Augusto Cesar Castoldi [[EMAIL PROTECTED]] wrote: > I have a html form and his "action" is a php file. > > this is the php file: > >function checasenha($ID) { ^^^ > $as="\""; > global $ID, $limite, $cdusuario, $usuario, $s
[PHP] function --> global variables
I have a html form and his "action" is a php file. this is the php file: function checasenha($ID) { $as="\""; global $ID, $limite, $cdusuario, $usuario, $senha; . . . } checasenha($ID); ---