
07/10/2006, 11:54
|
 | | | Fecha de Ingreso: abril-2004 Ubicación: Buenos Aires
Mensajes: 80
Antigüedad: 20 años, 11 meses Puntos: 0 | |
La tabla es la siguiente:
Código:
TABLE `popup` (
`id` int(2) NOT NULL auto_increment,
`left` int(4) NOT NULL default '0',
`top` int(4) NOT NULL default '0',
`width` int(4) NOT NULL default '0',
`height` int(4) NOT NULL default '0',
`fondo` varchar(7) NOT NULL default '0',
`activo` int(2) NOT NULL default '0',
`contenido` text NOT NULL,
KEY `id` (`id`)
);
|