in reply to Partial reloads of a page \ script ?

when the form is created (in vote.cgi), make sure that the action points to index.shtml and not vote.cgi.

<form action="index.shtml">

that's all.

--
Brigitte    'I never met a chocolate I didnt like'    Jellinek
http://www.horus.com/~bjelli/         http://perlwelt.horus.at

Replies are listed 'Best First'.
Re: Re: Partial reloads of a page \ script ?
by lagrenouille (Acolyte) on Aug 28, 2002 at 10:40 UTC
    G'day all (just identified - sorry)

    OK, tried that... it *almost* works, except the form cannot be submitted using the POST method. (Is this a server configuration issue or it just cannot be so ?) I was wanting to use POST as a method specifically, rather than GET.
    Is this possible ?

    Cheers in advance
      It is impossible. Content of POST (contrary to query string in GET requests) is not passed to scripts called via SSI.

      --
      Ilya Martynov (http://martynov.org/)