I use the POST method with large forms, and have no problems.
You don't need to read the HTTP_POST_VARS array to get the data,
You can call the variables directly..
For example if you have a field called 'Name' in the file form.php, and a form set to send the information to process.php using the post method, then in this file you can just use
<?php echo $Name ?>
Anand