0
我有一個wiki和論壇,現在我想將在去使用維基標題搜索查詢我的論壇的搜索頁面的每個維基文章的鏈接。動態wiki鏈接進行搜索查詢論壇上
所以我想我需要像A HREF這
<a href="http://www.myforumsite.com/search/PAGETITLEFROMWIKI">Discuss this topic in forums</a>h
有人能填補我錯過了位!
我有一個wiki和論壇,現在我想將在去使用維基標題搜索查詢我的論壇的搜索頁面的每個維基文章的鏈接。動態wiki鏈接進行搜索查詢論壇上
所以我想我需要像A HREF這
<a href="http://www.myforumsite.com/search/PAGETITLEFROMWIKI">Discuss this topic in forums</a>h
有人能填補我錯過了位!
<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>');