in reply to (OT) PHP Learning experiences
PHP functions are case-insensitive. That's just sick.
function abc () { print "oh noes\n"; } Abc(); aBC(); AbC(); [download]
...prints out exactly what you would most fear.