--- Advanced.tex.orig	Mon Aug 13 18:43:42 2001
+++ Advanced.tex	Mon Aug 13 19:00:37 2001
@@ -14,14 +14,14 @@
 \code{POST} requests take this form:
 
 \begin{verbatim}
-http://harvest.weather.com/cgi-bin/3com/avantgo/palmpilot_city_search.pl?city_destination=46552&action=Go"
+"http://harvest.weather.com/cgi-bin/3com/avantgo/palmpilot_city_search.pl" POST="city_destination=46552&action=Go"
 \end{verbatim}
 
 This URL will get the weather forecast for New Carlisle, In. (zip code 46552).  
 The entry in \name{home.html} would be:
 
 \begin{verbatim}
-<A HREF="http://harvest.weather.com/cgi-bin/3com/avantgo/palmpilot_city_search.pl?city_destination=46552&action=Go">Weather</A><P>
+<A HREF="http://harvest.weather.com/cgi-bin/3com/avantgo/palmpilot_city_search.pl" POST="city_destination=46552&action=Go">Weather</A><P>
 \end{verbatim}
 
 Substitute your zip code to get your local forecast.
@@ -44,6 +44,8 @@
 \end{verbatim}
 
 \begin{latexonly}
+This is actually a \code{GET} request. Even though Plucker understands
+\code{GET} requests, we will change it to \code{POST}.
 Copy the line to another file for editing and open that file.
 Remove everything from \code{ADD\_DATE} to the quote(") before 
 \code{>GIF}. You can insert plucker options here like 
@@ -53,6 +55,8 @@
 on your \name{Plucker Home Page}. Mine now looks like this:
 \end{latexonly}
 \begin{htmlonly}
+This is actually a \code{GET} request. Even though Plucker understands
+\code{GET} requests, we will change it to \code{POST}.
 Copy the line to another file for editing and open that file.
 Remove everything from \code{ADD\_DATE} to the quote(") before 
 \code{>GIF}. You can insert plucker options here like 
@@ -63,14 +67,14 @@
 \end{htmlonly}
 
 \begin{verbatim}
-<A HREF="http://sitemap.mapquest.com/mqmapgend?MQMapGenRequest=FDR2dmwjDE%3bf72g%26FDT7w%7cqut2hr%24.5y8n9u%24%3a%26%40%24%3a%26z%240u6%240u6%24PK%18%19%3dTPWIK,rn061g%26%3dy0du2n%26%40%24%3a%26%40%24%3a1%40" MAXWIDTH=300 MAXHEIGHT=300>New Carlisle Map</A>
+<A HREF="http://sitemap.mapquest.com/mqmapgend" POST="MQMapGenRequest=FDR2dmwjDE%3bf72g%26FDT7w%7cqut2hr%24.5y8n9u%24%3a%26%40%24%3a%26z%240u6%240u6%24PK%18%19%3dTPWIK,rn061g%26%3dy0du2n%26%40%24%3a%26%40%24%3a1%40" MAXWIDTH=300 MAXHEIGHT=300>New Carlisle Map</A>
 \end{verbatim}
 
 Finally, copy the line into your \name{home.html} and pluck your map!\\
 
-\note{} In the example above the \code{HREF=} part up to the \code{?}
-is actually the name of a program the server will run for you. The part
-after the \code{?} contains the parameters for the program. 
+\note{} In the example above the \code{HREF=} part 
+is actually the name of a program the server will run for you.
+The \code{POST=} part contains the parameters for the program. 
 
 
 \section{Perl-based Conduit}
