Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/10/2008, 12:08
Avatar de Wilfred
Wilfred
 
Fecha de Ingreso: octubre-2008
Mensajes: 110
Antigüedad: 15 años, 6 meses
Puntos: 1
Obtener id mediante GET

Hola a todos!
Tengo un sistema de noticas,lo que quiero hacer es mostrar el contenido mediante la variable id, tipo id=1 y aparece la primera noticia.
se que se hace con un get pero no me aclaro

aqui mi DB:
Código:
CREATE TABLE `sn_noticias` (
  `not_id` int(11) NOT NULL auto_increment,
  `notTitulo` varchar(255) NOT NULL,
  `notTexto` text NOT NULL,
  `notCategoriaID` int(11) NOT NULL,
  `fecha` date NOT NULL,
  PRIMARY KEY  (`not_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=32 ;