I need to add a spacer.gif to my product description. I can easily add it using HTML with something like:
<p> blah, blah, blah
<img src="includes/templates/CUSTOM/images/spacer.gif" width="10" height="100" />
</p>
But I am trying to learn how to use PHP and Zen Cart correctly. I tried the following code in the product description and it doesn't work correctly.
<p> blah, blah, blah
<?php
zen_image(DIR_WS_TEMPLATE.'images/spacer.gif','','100px','10px')
?>
</p>
Would some kind soul correct/give me a sample of what I should use?
Bookmarks