My php.ini:  error_reporting = E_ALL & ~E_NOTICE

I have a form to send of the variables, but my page do not receive values.

This my code:

<?php
$nome = StrToLower($nome);
$senha = StrToLower($senha);
?>

thanks


"Derick Rethans" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Adriano Santos wrote:
> > Hi,
> >
> > I'm with problem: Undefined Variable.
> > I'm using :
> > PHP 4.2.3
> > MySql 3.2.39
> > Windows 2000
> >
> > How do I make to soluction my problem ?
>
> at the top of your script:
> error_reporting(E_ALL & ~E_NOTICE);
>
> or initialize your variables likes:
> $number = 0;
> $string = "foo";
>
> Derick
>
>
> --
>
> -------------------------------------------------------------------------
>   Derick Rethans                                 http://derickrethans.nl/
>   PHP Magazine - The PHP Magazine for Professionals - http://php-mag.net/
> -------------------------------------------------------------------------
>



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

Reply via email to