'2StateReviews' ); } echo $before_widget; echo $before_title; echo $options['title']; echo $after_title; sample2statereviews(); echo $after_widget; } function sample2statereviews() { $options = get_option("widget_my2statereviews"); echo '
'; } function my2statereviews_control() { $options = get_option("widget_my2statereviews"); if (!is_array( $options )) { $options = array( 'title' => '2StateReviews', '2stateusername' => 'Darren' ); } if ($_POST['my2statereviews-Submit']) { $options['title'] = htmlspecialchars($_POST['my2statereviews-WidgetTitle']); $options['2stateusername'] = htmlspecialchars($_POST['my2statereviews-WidgetUsername']); update_option("widget_my2statereviews", $options); } ?>