Well, an include does just that; includes code from another place.
So say you have an input form on one page, lets call it input.php and that input box is where the visitor inputs their name: Michael.
Then you could use this information later on on another page.
to use an include you just simply put:
PHP Code:
<?php include("http://site.com/input.php"); ?>
Where ever you want the contents displayed on that page.
Becareful though, as includes will include the ENTIRE page.
Perhaps you want Global Variables instead??
Bookmarks