1
Greetings,
I'm trying to alter the appearance of MyAlbum-P 2.6 and I'm running into a problem. CSS and formatting aside, why doesn't this work? It should, but whenever I put it in place, the categories NEVER get displayed.
I'd appreciate any help I can get.
Wayne
----
le="color: #000000"><?php <table width="100%" border='0' cellspacing='1' cellpadding='3' align="center"> <tr> <td colspan="2">Categories</td> </tr> <{foreach from=$subcategories item=cat key=count}> <tr> <td><a href="<{$mod_url}>/viewcat.php?cid=<{$cat.cid}>"><{$cat.title}></a></td> <td><{$cat.photo_total_sum}></td> </tr> <{foreach from=$cat.subcategories item=subcat}> <tr> <td><a href="<{$mod_url}>/viewcat.php?cid=<{$subcat.cid}>"><{$subcat.title}></a></td> <td><{$subcat.photo_small_sum}></td> </tr> </foreach> </foreach> </table>