Hello! You can solve this problem changing the file php.ini. Please edit your php.ini file and change the parameter register_globals = On, This not force to declare all variables in your php Programs.
Bye! CESAR A3 ----- Original Message ----- From: "Chris Hewitt" <[EMAIL PROTECTED]> To: "Miladin Joksic" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, November 25, 2003 10:34 AM Subject: Re: [PHP-INSTALL] I really need help ... ;) > Miladin Joksic wrote: > > > I have installed Apache 2.0.47 with PHP 4.3.3 but when I use Apache as > > a server to process .php pages I get lines like this in error.log file: > > > > [client 10.0.0.4] PHP Notice: Undefined variable: ff_name in > > G:\Program Files\Apache Group\Apache2\htdocs\test\hvala.php on line > > 12, referer: http://ibm/test/kontakt.php > > > > Apache is installed on Windows 2000. > > > From memory this simply means that you have used a variable (that is, > examined its value) before you have assigned it a value. Try assigning > it before you use it, that is put: > ff_name = ''; > before you first use it. > > HTH > Chris