Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How can I add picture to a new box?


Guest

Recommended Posts

I want a box (already created) instead of text/links I want to add pictures.

 

Can't get it to work

 

<?php

$info_box_contents = array();

$info_box_contents[] = array('text' => BOX_HEADING_BANNER_BOX);

 

new infoBoxHeading($info_box_contents, false, false);

 

$info_box_contents = array();

$info_box_contents[] = array('text' => '<a href="' . tep_image(DIR_WS_IMAGES . 'default/2.gif') . ');

 

Anyone?

Regards

Per

Link to comment
Share on other sites

this bit looks wrong to me:

 

$info_box_contents[] = array('text' => '<a href="' . tep_image(DIR_WS_IMAGES . 'default/2.gif') . ');

 

 

try:

 

$info_box_contents[] = array('text' => '<img src="' . tep_image(DIR_WS_IMAGES . 'default/2.gif') . '">');

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...