Hello everyone,
i got this error message while writing a class, can anyone explain to me what is wrong?
Fatal error: Cannot redeclare class person in classPerson.inc on line 10
my classPerson.inc file looks like this:
<?php
Class Person
{
var $name;
var $age;
function getName(){
return $name;
}
}
?>
is there something wrong with my programming? or what does the error message mean?
Yours faithfully,
Javier