Hey Stefan,
I dont quite understand what your trying to do, but I will try to give you some
information you may be able to use anyways.
As you should already know HTTP servers take information from forms and pass it
to a CGI program using POST or GET. The GET request can pass data via URL
encoding such as "www.foobar.com/test.cgi?test=on".
With POST, your data is sent additionally, not as part of a URL. This prevents
your data from being viewed or entered as a URL, and as I understand was inpart
the reason they came up with POST.
Hope I helped,
--Ryan
[EMAIL PROTECTED] wrote:
> Hi list,
> this might not be Rebol related directly, but since I intend to use the info
> for a rebol script I guess it's ok. Anyways, here we go.
>
> There's a page with a search form, and I'd like to know what the POSTed URL
> look like. The source goes something like this:
>
> <FORM ACTION="search.asp" method=post target="rightframe" NAME=frmSearch>
> <TD width=15 height=1></TD>
> <TD><INPUT TYPE="text" SIZE=11 NAME=word></TD>
> <TR>
> <TD></TD><TD><INPUT TYPE="radio" NAME="search"
> VALUE="actor" CHECKED>
> <IMG SRC="Actor.gif"></TD>
> </TR>
> <TD></TD><TD><INPUT TYPE="radio" NAME="search"
> VALUE="title">
> <IMG SRC="title.gif"><INPUT TYPE=image
> SRC="search.gif" BORDER=0 ALT="Search"></TD>
> </FORM>
>
> Of course, I tried to (naive as I am), to post an url that has the form data
> like this: http://blaaah.com/search.asp?title=blaaah
>
> but this isn't the right one. Is there any way I can instead of performing
> the search just see the url?
>
> Any info appreciated
>
> //Regards Stefan