en una de mis noticias al hacer clic sale esto:
http://localhost/w/SDN2/mas.php?id=5&categoria=3
y en la pagina solo sale esto: Noticias en la categoria 3
y nada mas...
Os dejo la estructura SQL haber si os va mejor :)
Código PHP:
REATE TABLE `sn_categorias` (
`cat_ID` int(11) NOT NULL auto_increment,
`catCategoria` varchar(100) NOT NULL,
PRIMARY KEY (`cat_ID`)
) ENGINE=MyISAM;
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,
PRIMARY KEY (`not_ID`)
) ENGINE=MyISAM;
Ahi esta he provado de mil formas pero no hay manera...
Muchismas gracias ghesent!!!