Hi, i recently reinstalled win2000 and php 4.0.6 and now getting...
Warning: undeclared variable <var_name> for every variable i try to output.
Any ideas?
Place this at the top of your code.
error_reporting (E_ERROR | E_WARNING | E_PARSE);
Make sure there's the following line is exact in your php.ini: error_reporting = E_ALL & ~E_NOTICE;
I had the same problem in win2k, now it's ok, good luck