
November 10th, 1999, 04:35 AM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
Try this example, it worked for me just fine:
<BLOCKQUOTE><font size="1" face="Verdana,Arial,Helvetica">code:</font><HR><pre>
<html>
<body>
<form action="<? echo $PHP_SELF ?>" method=post>
<input type=text name=something size=20>
<input type=submit name=ok value=ok>
</form>
<?
if ($HTTP_POST_VARS):
print "Values submitted via POST method:<br>";
while (list($key, $val) = each($HTTP_POST_VARS)) { echo "$key => $val<br>";}
endif;
?>
</body>
</html>
[/quote]
Goral
|