Stap 2

Eerst hebben we 2 tabellen nodig voor in de database toe te voegen waar al de nieuwsberichten en reacties komen.
Query code voor nieuws:

CREATE TABLE nieuws (
id int(10) auto_increment not null default '0',
datum varchar(20) not null,
bericht text not null,
emailadres varchar(60) not null,
onderwerp varchar(60) not null,
naam varchar(30) not null,
primary key(id))

Query code voor reacties:


CREATE TABLE nieuwscomments (
id int(10) auto_increment not null default '0',
nieuwsid int(10) not null,
datum varchar(20) not null,
tijd varchar(10) not null,
bericht text not null,
emailadres varchar(60) not null,
naam varchar(30) not null,
primary key(id))

« Lees de omschrijving en reacties

Inhoudsopgave

  1. Stap 1
  2. Stap 2
  3. Stap 3
  4. Stap 4
  5. Stap 5
  6. Stap 6

PHP tutorial opties

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.