Magento – How to Load Product by ID

product

So I'm quite new to magento.
I know that with <?php $_product = $this->getProduct(); ?> you get the currently loaded product and with $product_id = $this->getProduct()->getId(); you get the ID.
However, I need to load only a specific product by its ID. So for example load the product with the ID 20.
Would it be something like this:

$_product = Mage::getModel('catalog/product')->load($productID, '20');

Any help is appreciated!

Best Answer

Magento Load Product by ID:

 $productId = 20;
 $product = Mage::getModel('catalog/product')->load($productId);

Load Product Storewise by ID

 $productId = 20;
 $product = Mage::getModel('catalog/product')->setStoreId(1)->load($productId);  

You can display product Name and Sku using these:

 echo $product->getSku();
 echo $product->getName();