quasiman Posted February 10, 2007 Share Posted February 10, 2007 If you're not familar with it: http://phpwebcommerce.com I've modified plaincart to make drop shippers per item. When I'm in the admin/product/modify screen, I can't seem to keep the distId (copied/created from catId) in session. I'm assuming in session anyway. Here's the error I'm getting: Notice: Undefined variable: distId in /public_html/cart/admin/product/modify.php on line 86 Notice: Undefined variable: distId in /public_html/cart/admin/product/modify.php on line 86 yes, it's displayed twice. for the sake of space on this page, here's a zip of my admin directory admin.zip Here's my distributors table structure: CREATE TABLE `tbl_distributor` ( `dist_id` int(11) NOT NULL auto_increment, `dist_name` varchar(100) NOT NULL default '', `dist_address` varchar(100) NOT NULL default '', `dist_address2` varchar(100) NOT NULL default '', `dist_city` varchar(100) NOT NULL default '', `dist_state` varchar(20) NOT NULL default '', `dist_zip` varchar(10) NOT NULL default '', `dist_image` varchar(255) NOT NULL default '', `dist_thumbnail` varchar(255) NOT NULL default '', PRIMARY KEY (`dist_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1000; Any help would be greatly appreciated! Quote Link to comment https://forums.phpfreaks.com/topic/37875-plaincart-modifications/ Share on other sites More sharing options...
quasiman Posted February 13, 2007 Author Share Posted February 13, 2007 nevermind, I got it....now on to my other issues Quote Link to comment https://forums.phpfreaks.com/topic/37875-plaincart-modifications/#findComment-183219 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.