Update of /cvsroot/phpweather/web
In directory usw-pr-cvs1:/tmp/cvs-serv29234
Modified Files:
index.php
Log Message:
Those long GET URLs were quite annoying to look at.
Index: index.php
===================================================================
RCS file: /cvsroot/phpweather/web/index.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- index.php 18 Mar 2002 17:06:44 -0000 1.8
+++ index.php 18 Mar 2002 17:57:07 -0000 1.9
@@ -37,7 +37,7 @@
echo '
<p>
-<form action="index.php" method="get">
+<form action="index.php" method="post">
<input type="hidden" name="action" value="show_stations">
';
@@ -55,7 +55,7 @@
echo '
<p>
-<form action="index.php" method="get">
+<form action="index.php" method="post">
<input type="hidden" name="action" value="show_weather">
';
@@ -77,7 +77,7 @@
/* A station has just been selected - we print the weather. */
echo '
<p>
-<form action="index.php" method="get">
+<form action="index.php" method="post">
<input type="hidden" name="action" value="show_weather">
';
|