I Need help about make forum search system.
Posted: Wed Mar 13, 2024 9:43 am
There no example for make forum search system. Can anyone help me for forum search?????
Let's talk
http://blog.wapka.website/
Code: Select all
<form method="get">
<input type="text" name="search" value="">
<input type="submit">
</form>
Code: Select all
<a href="/forum.html?id=%id%">%name%</a><br>
Code: Select all
<parent>0</parent>
<search>{{GET(search)@OR(empty)}}</search>
<limit>5</limit
Code: Select all
Not found
Thank you.. I will tryleedalgoo wrote: ↑Wed Mar 13, 2024 10:52 am Add this somewhereJust add attribute 'action' in form if you want to redirect it to other pageCode: Select all
<form method="get"> <input type="text" name="search" value=""> <input type="submit"> </form>
then in forum lister code, add thisConfig :Code: Select all
<a href="/forum.html?id=%id%">%name%</a><br>
Default :Code: Select all
<parent>0</parent> <search>{{GET(search)@OR(empty)}}</search> <limit>5</limit
Code: Select all
Not found