Hi every one
I'm creating some images on the fly, after cut, resize, generate the image I add some little images in the final image.
my problem starts here
$temp='mImages/punto4.png';
$mark = imageCreateFromPNG($temp);
the code above works very good, but if i try to change the second line with a variable, for example :
$myVariable=4;
$temp='mImages/punto' . $myVariable . '.png';
$mark = imageCreateFromPNG($temp);
I can't obtain my image, what do you think is wrong?
thanks in advanced
richard