//File: test.inc
<?php
echo "Inside the included file<BR>";
return "Returned String";
echo "After the return inside the include<BR>";
?>
<?php
echo "Inside of includetest.php<BR>";
$ret = include ('test.inc');
echo "Done including test.inc<BR>";
echo "Value returned was '$ret'";
?>