Hi, Actually class names are case insensitive in PHP. So the class name you get is not 100% correct according to convention, but it will still work. class AbCdDeF {} $foo = new abcdef(); // works Cheers,