Adriano Santos wrote:
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);
?>
I guess you use PHP 4.2.0+; since this version the register_globals setting defaults to off. See http://www.php.net/release_4_2_0.php for more info.
This change was necessary as part of our efforts to make PHP scripting more secure and portable.

--

-------------------------------------------------------------------------
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