动态wiki链接使用页面标题在论坛上搜索查询

时间:2011-07-09 14:32:45

标签: php html

我有一个wiki和一个论坛,现在我想在每个wiki文章中放置一个链接,使用维基标题作为搜索查询进入论坛的搜索页面。

所以我想我需要像这样做一个href

<a href="http://www.myforumsite.com/search/PAGETITLEFROMWIKI">Discuss this topic in forums</a>h

有人可以填写我遗失的位吗?

1 个答案:

答案 0 :(得分:1)

<a href="http://www.myforumsite.com/search/<?php echo url_encode($page_title); ?>">Discuss this topic in forums</a>

其中$ page_title变量带有您的页面标题,由您的cms设置。 或者您可以使用javascript从用户端的页面获取标题

document.write('<a href="http://www.myforumsite.com/search/'+document.title+'">Discuss this topic in forums</a>');