Firstly, I would recommend storing the actual page / message ID in the options table, and not its name, you can still display the page names for the user, just select the drop-down list with parameters as identifiers
Have you checked the $ page-> ID from j-man86's answer, actually returning the correct id?
Assuming the saved option is the page id and not the page title, the following will work
$page = get_page(get_option('good_blockwho')); $title = $page->post_title; $content = apply_filters('the_content', $page->post_content);
source share