WordPress displaying content from sub pages

It sounds like you may be looking for wp_list_pages():

$args = array(
  'child_of' => $post->ID
);
wp_list_pages( $args );

With the appropriate arguments I am almost certain that you can do what you need with that function.