How would I print a specific menu by id in a theme?

I have created a Menu with the id of 82
with 3 menu/items of 83,84,85

I want to hardcode it to my theme to display the items inline.(across)
example:

  • item 83
  • item 84
  • item 85
  • doesnt work --> print theme('links', 82, array('class' => 'my-class'))

    Comments

    xDudditzx’s picture

    The above example wasnt supposed to parse the list

    <li>item 83</li> <li>item 84</li> <li>item 85</li>
    
    amariotti’s picture

    This is similar to what I'm trying to do here: http://drupal.org/node/403934

    I'm trying to find a 6.x version. What version are you looking for? If it's for 5.x then here's the code you need:

    $mid = *menu id*;
    print theme('menu_tree', $mid);