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: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:
[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.
ff_name = '';
before you first use it.
HTH Chris