How to Create Own Form in Interspire
There are Four files should be Created for to Create own Interspire Form ,steps mention below before you should make herf link for Sony idea in topmenu.html file in panel directory and pass the link interspire/master.php. Steps 1. Create Master.php → interspire/master.php and paste the given below code include(dirname(__FILE__)."/init.php"); require(dirname(__FILE__).'/includes/classes/class.master.php'); $GLOBALS['ISC_CLASS_GIFT_CERTIFICATES'] = GetClass('ISC_MASTER'); $GLOBALS['ISC_CLASS_GIFT_CERTIFICATES']->HandlePage(); Step 2. Create class.master.php → interspire/include/class/class.master.php and paste given below code class ISC_MASTER { public function HandlePage() { //$GLOBALS['ISC_CLASS_TEMPLATE']->SetPageTitle(sprintf("%s - %s", GetConfig('StoreName'), GetLang('Master'))); //$GLOBALS['ISC_CLASS_TEMPLATE']->SetTemplate("giftcertifica...