Forum Moderators: coopster
I have a problem with GD image script.
GD only accepts colors formatted:
$borcol = 0x99;
but not:
$borcol = "0x99";
This makes the whole thing rather difficult as I can't fetch colors from database. The string dividing thing I requested before works fine, but GD doesn't accept the colors surrounded by quotes or colors fetched from database.
What should I do?