Seach

create a callback menu in drupal7

create a module 
function modulename_menu()
{
$items['link'] = array( 
    'title' => 'page title',
    'page callback' => 'callback ', 
    'access callback' => TRUE
  );
return $items;
}
function callback()
{
echo "hello";
}
clear the drupal cache then 
type url of the domain/link