Php post help

Hi experts ! i need guide line for php post
Example:
In A.php i done my calculation , i would like to use form action post to C.php but before that i need go through B.php.
A.php do calculation then next step is B.php let user enter information final step is C.php show information of A.php + B.php

A.php coding example:


<form action='C.php'  method='POST'>
<input .....>
<input type="submit"   name="Submit"  />
</form>

Put the data from form A that you want to send to C.php in hidden form fields in form B.
Idem for form C.