Ver Mensaje Individual
  #3 (permalink)  
Antiguo 12/07/2006, 13:33
juanpro
 
Fecha de Ingreso: septiembre-2003
Ubicación: lima
Mensajes: 378
Antigüedad: 20 años, 7 meses
Puntos: 0
No entiendo muy me dices q maneje todo en una sola tabla mira aca estan mis tablas:

CREATE TABLE `paquete` (
`cod_paquete` int(5) NOT NULL auto_increment,
`cate_paquete` varchar(225) NOT NULL,
`nom_paquete` varchar(225) NOT NULL,
`tipo_hotel` varchar(200) NOT NULL,
`can_persona` varchar(150) default NULL,
`pre_dolar` double(6,2) unsigned default NULL,
`pre_euro` double(5,2) unsigned default NULL,
`pre_libra` double(5,2) unsigned NOT NULL,
PRIMARY KEY (`cod_paquete`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;


CREATE TABLE `politica` (
`idpol` int(5) NOT NULL auto_increment,
`tipo_euro` double(5,2) unsigned NOT NULL,
`tipo_libra` double(5,2) unsigned NOT NULL,
PRIMARY KEY (`idpol`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

los precios se actualizan segun el tipo de cambio y el precio base en dolar ahi esta el link de como se muestra actualmente en html

http://www.peruforless.com/specials/...f_the_inca.php

quiero entender la forma como me la planteas
Gracias de antemano