14/12/2009, 02:56
|
| | Fecha de Ingreso: noviembre-2009
Mensajes: 23
Antigüedad: 15 años Puntos: 0 | |
Respuesta: Hacer que los usuarios vean su propia infirmacion Estoy tratando de hacer una pagina que muestre calificaciones pero necesito que solo muestre mis calificaciones sin tener que hacer una table por alumnos.
Esta es mi tabla: CREATE TABLE `alumnos`.`calificaciones` (
`id_calificaciones` INT( 15 ) NOT NULL AUTO_INCREMENT ,
`id_alumnos` INT( 15 ) NOT NULL ,
`calif1` INT( 3 ) NOT NULL ,
`calif2` INT( 3 ) NOT NULL ,
`calif3` INT( 3 ) NOT NULL ,
`calif4` INT( 3 ) NOT NULL ,
`calif5` INT( 3 ) NOT NULL ,
`calif6` INT( 3 ) NOT NULL ,
`calif7` INT( 3 ) NOT NULL ,
`calif8` INT( 3 ) NOT NULL ,
PRIMARY KEY ( `id_calificaciones` )
) ENGINE = InnoDB
Y necesito que cuando un alumno acceda pueda ver sus calificaciones y no toda la tabla completa |