首页上一页 1 下一页尾页 1 条记录 1/1页
有关thinkphp中的链接
发表在PHP图书答疑
2015-12-22
是否精华
是
否
版块置顶:
是
否
在数据库中创建了数据表news 包括id,title(新闻标题),href(新闻页的链接)
在主页index.php中想要循环输出新闻标题,并且每个标题链接相应的新闻页
<table align="right" width="97%" border="0">
<tbody>
<volist name="select" id="news">
<tr>
<td align="center"><img height="8" src="/Public/images/arrow_01.gif" widt h="8"></td>
<td><a href="/Bbs/ForumPost/{$news.href}">{$news.title} </a></td>
</tr>
</volist>
但是href=“”的部分不知道怎么写,可以链接每个标题相应的网址?
在主页index.php中想要循环输出新闻标题,并且每个标题链接相应的新闻页
<table align="right" width="97%" border="0">
<tbody>
<volist name="select" id="news">
<tr>
<td align="center"><img height="8" src="/Public/images/arrow_01.gif" widt h="8"></td>
<td><a href="/Bbs/ForumPost/{$news.href}">{$news.title} </a></td>
</tr>
</volist>
但是href=“”的部分不知道怎么写,可以链接每个标题相应的网址?