Log in

View Full Version : How can I create a search like vbulletin.org?


joyceleong
04-11-2008, 04:14 AM
Hi,

I would like to check how can I create the search form at the header that links up to the results upon clicking the search button?

Currently I have a textfield and a "GO" button. But when I input a text for search, and upon clicking the "GO" it was sent to the advanced search with the text instead of diverting it to the search results.

Please advise, thanks.:confused:

GameWizard
04-11-2008, 07:31 AM
Make sure you have this as your form action:

<form action="search.php?do=process" method="post">
This way it will actually process the query.

joyceleong
04-11-2008, 07:57 AM
That works. Thanks alot.