Internal Search?

TheDougaller

New Member
Been trying to fix this for hours.. basically I used a template that came with a search form. I cant seem to get it to work..

The code is

<form id="formsearch" name="formsearch" method="post" action=""><span><input name="editbox_search" class="editbox_search" id="editbox_search" maxlength="80" value="" type="text" /></span><input name="button_search" src="images/search.gif" class="button_search" type="image" /></form></div>

What do I have to do to get this to search my site?

Any thoughts? Thanks
 

ronaldroe

Super Moderator
Staff member
I'm not much for scripting languages and what-not, but your action in the form tag is empty. If you're posting the form, you have to post it to something.
 

krymson

Member
<form id="formsearch" name="formsearch" method="post" action="">

Where it says action="" you need to have something there, which would be your processing php page that would tell the form... Hey When someone hits submit preform this action. Read up on some php and how to be able to search within your website but if im not mistaken it requires a database
 
Top