cicciopasticcio Posted March 28, 2007 Posted March 28, 2007 Hi, where is the mistake? <_< <td> <div align="center" class="style4"> <?php echo '<a href="' tep_href_link(FILENAME_SHIPPING)'">' BOX_INFORMATION_SHIPPING '</a>'; > </div> </td> </tr> any suggestion are wellcome. :thumbsup: Antonio.
Guest Posted March 31, 2007 Posted March 31, 2007 with php, you need to concatenate strings and terminate it properly <?php echo '<a href="' tep_href_link(FILENAME_SHIPPING)'">' . BOX_INFORMATION_SHIPPING . '</a>'; ?>
cicciopasticcio Posted April 1, 2007 Author Posted April 1, 2007 with php, you need to concatenate strings and terminate it properly <?php echo '<a href="' tep_href_link(FILENAME_SHIPPING)'">' . BOX_INFORMATION_SHIPPING . '</a>'; ?> yes thanks now work fine!!!!!!!!! Antonio.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.