Ver Mensaje Individual
  #4 (permalink)  
Antiguo 22/08/2011, 13:29
shoropipe
 
Fecha de Ingreso: agosto-2011
Mensajes: 10
Antigüedad: 12 años, 7 meses
Puntos: 0
Respuesta: web para like de facebook

esta es la tabla like

Código:
CREATE TABLE IF NOT EXISTS `like` (
  `id` int(11) NOT NULL auto_increment,
  `rand` varchar(244) NOT NULL,
  `like` longtext NOT NULL,
  `count` int(11) NOT NULL,
  `created` varchar(255) NOT NULL,
  `last_view` varchar(255) NOT NULL,
  `youtube` mediumtext NOT NULL,
  `type` varchar(255) NOT NULL,
  `img` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;