php.ini

A

Anonymous

Guest
hi I have problem with php.ini...
after instalation Apache and php to local, everything is good. only when i use some variable which is not defined - script take an error. where i can set something, to use undefined variables without errors....

thx
Marek
 
if you are getting Notices set Error_reporting in php.ini to the needed value (its all described there)

there is also a PHP function for setting error_reporting level for the current script only... It is recommended to use notices on for development machines
 
Back
Top