Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I really want to learn how to make my own search engine for my site. I have the defined buttons and labels, but it doesn't search. I can't figure out the HTML or XHTML code for actually searching the site.

This is the code I have so far:

<p class="search">
    <label>SEARCH</label>
    <input name="search" type="text" class="txt" />
    <input name="search-btn" type="submit" class="btn" value="SEARCH" />
</p>

Thanks!

share|improve this question

5 Answers

You cannot provide a search function with just HTML and XHTML, unless you're just using a standardized form to get some external search engine (like Google) to do the work.

It is possible to do search with JavaScript, but that requires you to transfer all the data to the client, so it is not a very good idea.

If you want to write it yourself, you should use some server-side language, such as PHP or Python - it depends on what you have access to.

share|improve this answer

Check out Google Site Search.

share|improve this answer

There is no feature in HTML that will perform the search. But you do have 3 alternative options:

  1. You can integrate 3rd-party search engines like Google into your site. (Or see one of these examples.)
  2. You can upload a CGI page which uses PHP, Perl, or another scripting language to perform the local search for you.
  3. Lastly, there are some options for JavaScript search engines which work right inside the page.
share|improve this answer

Adding search to your site isn't nearly as simple as creating a search form: it also involves a bunch of programming. Depending on your experience level and what you are trying to do, it can be fun and rewarding to program simple search functionality to your site, but it can also be extremely time-consuming. If you want to take the easy route, use http://www.google.com/sitesearch/ as Jim suggested. If you want to make it yourself, see something like http://stackoverflow.com/questions/386914/how-would-i-implement-a-simple-site-search-with-php-and-mysql to get started.

share|improve this answer
thanks guys yeah...i see how you have to use javascript...thanks again – felixd68 Jun 10 '10 at 16:36
Note that if you use google site search (or any other external provider), getting results back depends on being indexed by google in the first place - something small sites often find doesn't happen as quickly/comprehensively as they'd like. – adam Jun 10 '10 at 16:48

why not use this library ? its based on jQuery http://www.tipue.com/search/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.