Re: [PHP] function --> global variables

2001-03-05 Thread Hardy Merrill
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

2001-03-05 Thread Augusto Cesar Castoldi
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); ---