This is a sample input form from wordpress standard coding (I get it from this page - http://codex.wordpress.org/Creating_Options_Pages)
<input type="text" name="new_option_name" value="<?php echo get_option('new_option_name'); ?>" />
When people insert the data in the form, the value will store in the function
<?php echo get_option('new_option_name'); ?>
My question is, how to get back the value to display the anywhere like index.php, sidebar.php so in can be viewed by the public.