
01/03/2010, 14:02
|
| | Fecha de Ingreso: enero-2006
Mensajes: 263
Antigüedad: 19 años, 2 meses Puntos: 1 | |
Crear RSS Hola he creado la siguiente bd
CREATE TABLE `noticias` (
`idnoticia` int(6) unsigned NOT NULL AUTO_INCREMENT,
`titulo` mediumtext,
`resumennoticia` mediumtext,
`noticia` mediumtext,
`categoria` varchar(255) DEFAULT NULL,
`imagen` longtext,
`fecha` date DEFAULT NULL,
`minimagen` varchar(255) DEFAULT NULL,
PRIMARY KEY (`idnoticia`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
y lo que tengo que hacer es un rss para poner en mi web, donde aparezcan los datos titulo, un enlace (vernoticia.php?idnoticia=XX), y la noticia, he probado a hacerlo mediante tutoriales pero internet explorer me dice que no entiendo el lenguaje.
Quisiera saber como puedo hacerlo
Muchas gracias y perdon |