Get product id and product type in magento?

magento, magento-1.7, php

Solution

Try below code to get currently loaded product id:

$product_id = $this->getProduct()->getId();

When you don’t have access to $this, you can use Magento registry:

$product_id = Mage::registry('current_product')->getId();

Also for product type i think

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

$productType = $product->getTypeId();

Problem

I am creating magento store. I am beginner in magento. I want to get product id and product input type in my phtml file is this possible? please guide me.. I am trying to this way to get product type. but its not working for me ``` $product=Mage::getModel('catalog/product')->load($product_id); $productType=$product->getTypeID(); ``` Please guide me...

Original source