I have a code snipt like
<form action="save.php" ......>
..........
</form>
and save.php may look like
<?php
include_once "abc.inc";
......
.......
?>
in save.php the POST object is filled with the form variables correctly. But when I pass this POST object to another method with in in "abc.inc" like
process ($_POST) of ("abc.inc" )
in process function the _POST object becomes empty. Please help