views:

147

answers:

1

The product add page is very large..can anybody help me to create a single product adding page in the admin side...

+1  A: 

You can use magento development doc to finish this job. example:

use php code to get product:


$product = Mage::getModel('catalog/product');
print_r($product);

and you can insert/update/delete product by php code.

magento phpdoc

mivec