HI,
On my previous server, I could use this function in GD :
Code:
ImageJPEG ($img_handle, "image.jpg", 75);
However, I moved to another server. Now when I put that code in, my GD script returns errors. However, when I put this code in and upload it to my new server, it works!
Code:
ImageJPEG ($img_handle, "", 75);
Problem is, I dearly need to save the image on my website. What should I do?