It's strange... this is my simple code.
Code:
<?
#cek.php
error_reporting(E_ALL);
print('<pre>');
print_r($HTTP_POST_VARS);
print_r($_POST);
print_r($HTTP_GET_VARS);
print_r($_GET);
print('<pre>');
?>
<html>
<body>
<form name="test" action="cek.php" method="post">
<input type="text" name="a"><input type="text" name="b"><br>
<input type="submit">
</form>
<form name="test" action="cek.php" method="get">
<input type="text" name="c"><input type="text" name="d"><br>
<input type="submit">
</form>
</body>
</html>
when i run via browser using PHP 4 CGI default from WHM both $_POST and $HTTP_POST_VARS or $_GET and $HTTP_GET_VARS can show the entered values
but same code if i run using my custom PHP 4 CGI only $_GET and $HTTP_GET_VARS can show the entered values
both PHP are using a same file for php.ini
Any help please....... thanks