Change the Footer Text in the Admin Panel

function modify_footer_admin () {
  echo 'Created by YourName. Powered by <a href="http://WordPress.org">WordPress</a>.';
}
add_filter('admin_footer_text', 'modify_footer_admin');