Styled Blog List #1

Here is the sample of the styled blog list with customized left sidebar. Build amazing styled blog lists with Scalia's top-notch blog styles!
Get creditcard type in Magento

$order_id = 100; //order id goes here$_order = Mage::getModel(‘sales/order’)->load($order_id);      $_cctype = ”;if(!empty($_order)){              $_cctype = $_order->getPayment()->getCcTypeName();}echo $_cctype;

1 26 27 28 53