Alguém sabe como eu faço para ver os dados que foram enviados após um submit ?
Por exemplo eu tenho um html com 3 campos e queria ver o valor destes campos após o submit.
Se alguém puder me ajudar,
Valeu.

AndreCarrera hasn't added any friends yet.
24/07/2006, 10:33
24/04/2006, 16:05
20/04/2006, 14:41
$fp = fsockopen("999.999.9.9",80,$errno, $errstr, 30);
$out = "GET /cgi-bin/teste.exe HTTP/1.1\r\n";
$out .= "Accept: image/gif, image/x-bitmap, image/jpeg, image/pjpeg, */*\r\n";
$out .= "Accept-Language: pt-br\r\n";
$out .= "Accept-Encoding: gzip, deflate\r\n";
$out .= "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)\r\n";
$out .= "Host: 192.168.0.5\r\n";
$out .= "Connection: Keep-Alive\r\n\r\n";
fputs($fp, $out);
while (!feof($fp)) {
$saida = fgets($fp);
echo $saida;
}
17/04/2006, 13:59
12/04/2006, 13:31
Community Forum Software by IP.Board
Licensed to: Webmasters Online