Hola de nuevo. Como siempre, con dudas y problemas.
Tengo una base de datos que almacena datos de usuarios que previamente se registran en mi web.
La estructura de mi tabla es la siguiente:
Código PHP:
--
-- Estructura de tabla para la tabla `usuarios`
--
CREATE TABLE `usuarios` (
`id` int(11) NOT NULL auto_increment,
`Id_admin` varchar(10) default NULL,
`pass_admin` varchar(10) NOT NULL default '',
`login` varchar(30) default NULL,
`password` varchar(30) default NULL,
`loginW` varchar(50) NOT NULL default '',
`passwordW` varchar(50) NOT NULL default '',
`nombre` varchar(30) default NULL,
`apellidos` varchar(30) default NULL,
`anonacimiento` date default '0000-00-00',
`poblacion` text,
`direccion` text,
`codigopostal` text,
`provincia` text,
`telefono` text,
`fax` text,
`email` text,
`web` text,
`titulacionaca` text,
`formacionpos` text,
`seminarios` text,
`expepro` text,
`otros` text,
`presentacionW` text NOT NULL,
`titulacionW` text NOT NULL,
`publicacionesW` text NOT NULL,
`contactaW` text NOT NULL,
`NOVEDADES` text NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=22 ;