Possible Duplicate:
Pear error messages with PHP5.3.0
I am new to php and I am following a tutorial on net. I dont have a knowledge about this PEAR thing what I know it is a library. I download xampp and pear is included in it. But I run into this error.
error says
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 80
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 166
what I did was go into there and change this
function Config()
{
$this->container =& new Config_Container('section', 'root');
} // end constructor
into this
function Config()
{
$this->container = new Config_Container('section', 'root');
} // end constructor
I somehow get rid of the error but What if the change I made will made more errors in the future.