Belki kod böyle bir şey gibi görünüyor:
foreach(...$POST){
echo $key."<br/>;
}
var_dump($_POST);
veya
print_r($_POST);
You might insert a pre tag befveyae and after fveya the clearer output in your browser:
echo '<pre>';
var_dump($_POST);
echo '</pre>';
And I suggest to use Xdebug. It provides an enchanted var_dump that wveyaks without pre's as well.
See the PHP documentation on foreach: http://php.net/manual/en/control-structures.foreach.php
Kodunuzu aşağıdaki gibi bir şey olacaktır:
foreach ($_POST as $key=>$element) {
echo $key."<br/>";
}