Link to home
Start Free TrialLog in
Avatar of mhouldridge
mhouldridge

asked on

GD images works in IE, bu not in Firefox

Experts,

I am using GD library to generate images on the fly.  When testing the site within Mozilla Firefox the GD images do not display.

I link to the GD image script within the image tag as follows;

<img src='gd_create_thumbnail_large.php?filename=http://$domain/".$row."'  border='0px'>

The above works perfectly on Internet Explorer....

Please help
Avatar of Rok-Kralj
Rok-Kralj
Flag of Slovenia image

As far as I know mozzila requires attributes to be in doble quotes.
Try this:

echo('<img src="gd_create_thumbnail_large.php?filename=http://$domain/'.$row.'"  border="0px">');
ASKER CERTIFIED SOLUTION
Avatar of Rok-Kralj
Rok-Kralj
Flag of Slovenia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sakuya_su
sakuya_su

if the above did not help, what is the code used in gd_create_thumbnail_large.php?