hi all.
isn't it possible to overload the constructor of a class?
function className()
{
echo "this is an empty constructor";
}
function className($asdf)
{
echo "the var $asdf has been declared!";
}
is this not possible on some php versions? because on my localhost it works fine, but on my hoster it says
"can not redeclare className"!
thanks for replies!
j0sh