Buenas:
Mi pregunta es: ¿Cómo hago para que al hacer clic sobre una imagen nos muetre una ventanita con los datos obtenidos de la base de datos?
Como aquí: http://www.pcbox.es/pventa/
Salu2. Muchas gracias de antemano.
**Adjunto base de datos:
CREATE TABLE `distribuidores` (
`ID` int(11) NOT NULL auto_increment,
`nombre` text,
`direccion` text,
`poblacion` text,
`cpostal` int(11) default NULL,
`provincia` text,
`telefono` int(11) default NULL,
`web` text,
`email` text,
PRIMARY KEY (`ID`)
) ;