No fakt

Dziekuje, zaraz wstawiam "pomogł" ale przy okazji jeszcze jedno pytanie bo pojawil sie kolejny blad.
Mam taki kod :
<?php
require_once('class.Entity.php');
require_once('class.Individual.php');
class Individual extends Entity {
public function __construct($userID) {
parent::__construct($userID);
$this->propertyTable['name'] = 'nazwa1';
}
public function __toString() {
return $this->name;
}
public function getEmployees() {
return DataManager::getEmployees($this->id);
}
public function validate() {
parent::validate();
//walidacja danych organizacji
}
}
?>
Ktory wywala nastepujacy bład :
Cytat
Fatal error: Cannot redeclare class Individual in C:\Apache\htdocs\OOP\PHP5\PHP5_ZP\ContactManager\class.Organization.php on line 28
Co tutaj moze byc nie tak ?