Basis nieuwsscript
Een zeer simpele nieuwsscript, waarbij nu nog via phpmyadmin de nieuwsbericten moet invoegen. Ook is deze script zeer makkelijk te veranderen.
Zie ook commentaar in m'n script.
sql:
CREATE TABLE news (
id int(10) unsigned NOT NULL auto_increment,
postdate timestamp(14),
title varchar(50) NOT NULL,
newstext text NOT NULL,
PRIMARY KEY (id),
KEY postdate (postdate)
);
CREATE TABLE news_comments (
id int(10) unsigned NOT NULL auto_increment,
news_id int(10) unsigned DEFAULT '0' NOT NULL,
name varchar(40) NOT NULL,
comment text NOT NULL,
PRIMARY KEY (id),
KEY news_id (news_id)
);
Gesponsorde koppelingen
PHP script bestanden
Om te reageren heb je een account nodig en je moet ingelogd zijn.