PassMark Logo
Home » Forum

Announcement

Collapse
No announcement yet.

problems with setting up search form on page header

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • problems with setting up search form on page header

    Hi
    I'm trying to set up free version on a site.
    The search engine is working fine on it's own page (search.asp) but when i try to paste the form code to an existing page it doesn't work.

    The code is
    <form method="GET" action="/search/search.asp">

    <input type="text" name="zoom_query" size="10">

    <input type="submit" value="Search">

    </form>

    eg when i search for 'member' the same page is returned
    - index77.htm?zoom_query=member

    It's a non-dynamic site (flat HTML)

    Any help would be greatly appreciated.

    eamonnc

  • #2
    Can you post the URL to the site so that I can see the problem and
    investigate the cause.

    Comment


    • #3
      I have had a look at your web site. You appear to have made a simple HTML coding error.

      You have two <form> tags on the page. But only one </form> tag.

      Code:
      <FORM>
      ......
      <form method="GET" action="/search/search.asp">
      ......
      </form>
      So that is why it is not working.

      Comment

      Working...
      X