www.gusucode.com > citySHOP B2C商城系统 进销存 2.0.6码程序 > upload/data/templates/1_user_favorites.tpl.php

    <? if(!defined('IN_APP')) exit('Access Denied'); ?>
<form action="user.php?act=favorites&amp;do=del" method="post">
<table>
<tr class="uhead">
    	<th colspan="5">我的商品收藏夹</th>
    </tr>
    <tr>
    	<th><input type="checkbox" name="selectall" id="selectall" class="checkbox" />删?</th>
    	<th>商品</th>
        <th>收藏时间</th>
    </tr>
    <? if(is_array($favorites)) { foreach($favorites as $fa) { ?>    	<tr>
        	<td><input type="checkbox" name="delete[]" value="<?=$fa['fid']?>" class="checkbox" /></td>
            <td><a href="<?=$goods_head?><?=$fa['gid']?><?=$goods_end?>" target="_blank"><?=$fa['subject']?></a></td>
            <td><?=$fa['savetime']?></td>
        </tr>
    <? } } ?>    <tr>
    	<th colspan="5"><button type="submit" class="btn">删除</button></th>
    </tr>
</table>
</form>
<?=$multipage?>