أخبرني عن عناصر الجدول cat والجدول pic
			
		 
	 
 جدول cat
	كود PHP:
	
CREATE TABLE `cat` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(99) NOT NULL default '',
  `image` varchar(99) NOT NULL default '',
  `sub` int(10) NOT NULL default '0',
  `order_cat` int(10) NOT NULL default '0',
  PRIMARY KEY  (`id`) 
 جدول pic
	كود PHP:
	
CREATE TABLE `pic` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `picture` longtext NOT NULL,
  `cat_type` int(11) NOT NULL default '0',
  `date` varchar(255) NOT NULL default '0',
  `order_cat` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`) 
 cat_type
تخزن فيه ارقام الاقسام الموجوده في جدول cat
الشحي