I\'m trying to get the Order Increment Id in Magento, on the success.phtml page so that I can use this for affiliate tracking.
I\'m using the following code, but it
You can get the increment id using this code snippet:
$orderId = 12; $order = Mage::getModel('sales/order')->load($orderId); $Incrementid = $order->getIncrementId();
Now you can do an echo to the $Incrementid variable and see the increment id.
I hope this helps.