Skip to content

Instantly share code, notes, and snippets.

View bhapps's full-sized avatar

BH Apps bhapps

View GitHub Profile
@bhapps
bhapps / Magento code gist
Created January 1, 2016 00:28 — forked from geekwho-eth/Magento code gist
Magento code
<?php
//get import resource helper
$helper = Mage::getResourceHelper('importexport');
//get next auto increment id
$res = Mage::getSingleton('core/resource');
$readConnection = $res->getConnection('core_read');
$table = $res->getTableName('catalog_product_entity');
$id = Mage::getResourceHelper('importexport')->getNextAutoincrement("{$table}");