Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/04/2016, 04:09
Eslas
 
Fecha de Ingreso: abril-2016
Mensajes: 22
Antigüedad: 8 años
Puntos: 0
Respuesta: Notice: Undefined index:

Ahi esta :)

Código HTML:
Ver original
  1. modelos     CREATE TABLE `modelos` (
  2.  `ID` int(5) NOT NULL AUTO_INCREMENT,
  3.  `Modelo` varchar(50) NOT NULL,
  4.  `Color` enum('blanco','negro','azul','rojo') NOT NULL,
  5.  `Motor` enum('diesel','gasolina') NOT NULL,
  6.  `Tapiceria` enum('cuero','sintetica') NOT NULL,
  7.  PRIMARY KEY (`ID`)
  8. ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1