hello everyone i am new in php..yesterday i was having problem with imagecreatefromjpeg()function.when i try to compile
the following code:
<?php
$myImage = imagecreatefromjpeg('L:\Wallpaper\fun\2668.jpg');
header("Content-type: image/jpeg");
imagejpeg($myImage);
imagedestroy($myImage);
?>
it says "Call to undefined function imagecreatefromjpeg()"
in my php5.ini file
extension=php_gd2.dll
i am using windows XP and using zend studio as IDE
what should i do??please help!!
thanx in advance