I'd love to help, but I can't really figure out what it is you want to do.
If you're asking how to bring two php files together into one page, look up the "include" function. It lets you include the entire contents of another file in the current page. For example, if you created these pages in the same directory:
Code:
page1.php:
<p>This is page 1.</p>
Code:
page2.php:
<p>This is page 2.</p>
Code:
page3.php:
<?php
include 'page1.php';
include 'page2.php';
?>
When you view page3.php, you should see
Code:
<p>This is page 1.</p>
<p>This is page 1.</p>
If that didn't answer your question, could you try rephrasing it a little?