Quote:
|
Originally Posted by Degolas
my host does support php and i have a mysql db. I've read something about GD library (Drumstix said it was needed), what is that ? How do i know that my host use it ?
Again, über l33t work (to use some mmo's expressions lol) !
|
yes, sorry I forgot to mention that requirement...
put the following into a new php file and run it in your browser (on your host)
PHP Code:
<?php var_dump(gd_info()); ?>
Should tell you the gd library that is installed (if it is)
Alternately you can also do this:
PHP Code:
<?php phpinfo(); ?>
which will output everything about the php environment, including gd. This might be helpful if you wanted to know more about what was supported than just the GD library...