Hi,
I wrote some php code that takes creates a thumbnail from a given image but now i want to store it in a mysql blob in stead of displaying it or writing it to a file.
$image = imagecreate($x, $y);
=> how do i store $image in the database ?
if i store it like this i get "Resource id #3" in my table, not the actual image data.
what function to use ?
Thanks,
Nick