Gordon Stewart wrote:
> "Cannot redeclare class  etc... etc....."

This is the error message you need to fix, if I remember correctly the 
etc etc part will tell you that the class has been declared on line X in 
script Y so the etc etc part is quite important.

As far as I know there are two ways to cause this.
1) You created a class with the same name further up in your script and 
are now trying to include another class with the same name
2) Or you already included (include or require) the class further up in 
the script and are now trying to include it again.
Change require to require_once and see if that works.

require_once "/home/username/groupclass.php";

Reply via email to