Hi there!
I bring a new update! If you use PHP5, you will find the following error:
PHP Error : Assigning the return value of new by reference is deprecated
If you use PHP4, you need to do this if you want to pass the value by reference:
$var1 =& new class1();
But in PHP5, by default is passed by reference, so you must do:
$var1 = new class1();
Due to that, If you use PHP5 you need to update your vbglossar.php.
|