a news section. I was thinking bout putting the news in a MySQL-database.. Is one table enough for that..
will this be enough?
create table news (
newsId int not null,
topic varchar (60),
newsText text,
source varchar (100),
sourceHttp varchar (100),
d date,
primary key (newsId)
);
Better ideas?
Thanks for ANY help and comments.