Quote (gtackle62 @ Jul 16 2012 09:03pm)
made it lowercase and it didn't change, I've also made classes w/ it uppercase before, I don't think it matters.
also used a function_exists() on the function name, returned true...
for some odd reason you can't do that
I guess you have to do something like this
Code
<?php
class image {
function imagecreate() {
$img = imagecreatetruecolor(50,80);
}
}
?>