PDA

View Full Version : Undefined Variable Errors


Brian
11-20-2003, 08:39 PM
For those of you experiencing "undefined variable" errors, please add the following code at the very beginning of the file that is producing the error:

<?php error_reporting(0); ?>

This should fix this problem. The errors are shown because of the way PHP is configured on your server. The code above will stop those errors from being reported.