Ver Mensaje Individual
  #4 (permalink)  
Antiguo 05/08/2010, 12:06
Avatar de truman_truman
truman_truman
 
Fecha de Ingreso: febrero-2010
Ubicación: /home/user
Mensajes: 1.341
Antigüedad: 14 años, 2 meses
Puntos: 177
Respuesta: Gestion de Hosting - Básico - APORTE

BASE DE DATOS

--
-- Estructura de tabla para la tabla `hosting`
--

CREATE TABLE IF NOT EXISTS `hosting` (
`id` int(11) NOT NULL auto_increment,
`usuario` text NOT NULL,
`dominio` text NOT NULL,
`ingreso_dia` int(11) NOT NULL,
`ingreso_mes` int(11) NOT NULL,
`ingreso_ano` int(11) NOT NULL,
`mail` text NOT NULL,
`observaciones` text NOT NULL,
`importe` varchar(50) NOT NULL,
`periodo` int(11) NOT NULL,
`anual_enviado` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;

--
-- Volcar la base de datos para la tabla `hosting`
--

INSERT INTO `hosting` (`id`, `usuario`, `dominio`, `ingreso_dia`, `ingreso_mes`, `ingreso_ano`, `mail`, `observaciones`, `importe`, `periodo`, `anual_enviado`) VALUES
(11, 'Juan Perz', 'ejemploUNO.com', 5, 8, 2010, '[email protected]', 'Pagina de productos alimenticios, paga por mes', '25', 1, 2010),
(12, 'Roberto Gomez', 'ejemploDOS.com', 5, 8, 2009, '[email protected]', 'Paga anualmente', '50', 2, 2010);
__________________
la la la

Última edición por truman_truman; 05/08/2010 a las 12:08 Razón: correccion