I have one PC and one notebook, I have been working on a project with php for a long time and it is working perfectly in the notebook but today I transported it to the PC and when I started it, it showed a lot of errors and notices!
Notice: Undefined variable: …….
error: Strict Standards: Non-static method ……. should not be called statically, assuming $this from incompatible context in …..
the XAMPP version that I use in the PC is: 1.7.4 and the PHP version is 5.3.5
the XAMPP version that I use in the notebook is: 1.7.3 and the PHP version is 5.3.1
any suggestions? Thank you for your time and help.
It’s just the difference in the PHP settings that does this.
The error level for your PC is probably
E_ALL, whereas error level for your laptop is probablyE_ALL & ~E_NOTICE.