This is what I have:
echo tep_image(DIR_WS_IMAGES . "arText.png", "ALTERNATE TEXT HERE");
The output is this:
img src="THIS-IS-THE-IMAGE-LOCATION" alt="ALTERNATE TEXT HERE" title="ALTERNATE TEXT HERE"
My question is that I want to add WIDTH
& HEIGHT
of the image in tep_image function in OSCommerce. So the new output would be like this:
img src="THIS-IS-THE-IMAGE-LOCATION" alt="ALTERNATE TEXT HERE" title="ALTERNATE TEXT HERE" WIDTH="Sizepx" HEIGHT="Sizepx"