| 
			
			 
			
				25-04-2010, 11:07 AM
				
			
			
			
		 | 
	| 
		
		
			|  | عضو |  | 
					تاريخ التسجيل: Oct 2008 المدينة: Life 
						مشاركة: 291
					 
                    
					
                    مستوى تقييم العضوية: 18 |  | 
	| 
 تفضل 
 امر زراعه جدول word
 
 
 
	امر زراعه postindexكود PHP: 
		
			
CREATE TABLE IF NOT EXISTS `word` (
`wordid` int(10) unsigned NOT NULL auto_increment,
 `title` char(50) NOT NULL default '',
 PRIMARY KEY  (`wordid`),
 UNIQUE KEY `title` (`title`)
 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
 
 
 
	تحياتى ,,كود PHP: 
		
			
CREATE TABLE IF NOT EXISTS `postindex` (
`wordid` int(10) unsigned NOT NULL default '0',
 `postid` int(10) unsigned NOT NULL default '0',
 `intitle` smallint(5) unsigned NOT NULL default '0',
 `score` smallint(5) unsigned NOT NULL default '0',
 UNIQUE KEY `wordid` (`wordid`,`postid`)
 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
 
 
 
 
 
 
			
			
			
			
			
			
			
			
            
            
                
           	
			
			
		 |