link exchange contribution
interbikes <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.contributions |
|---|---|
| Message-ID | <2bff7ff0e47a750410bc007ec3ab8e3a@osCommerce-Forums> |
This message was sent from: Contributions
http://forums.oscommerce.com/viewtopic.php?p=227028#227028
----------------------------------------------------------------
I am trying to create a contribution that enables the creation of a links page alot easier than having to do it through html.
Basically I was thinking of using the banner admin to create the group 'linkexchange' and pulling those records but it wouldnt work properly..
I have had a play at creating a page that would display banners with the group 'linkexchange'....
[code]<?php
if ($banner = tep_banner_exists('dynamic', 'linkexchange')) {
?>
<br>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><?php echo tep_display_banner('static', $banner); ?></td>
</tr>
</table>
<?php
}
?> [/code]
but I couldnt get it to loop without the banners been random.
I was wondering if anyone knew how to get the results from the banner group and display them all with the right links etc as the banner way doesnt seem to work.