In php variable from html post method is automatically know in php script.
But if I want to view that data what shoud i do?
i have try this before...
$fp = fopen('php://stdin','r');
echo fgets($fp,$HTTP_CONTENT_LENGTH);
fclose($fp);
but i doesn't work becase PHP already read it as I told you above...
What Should i DO??????