Bonjour,
je faire dans mon site les statistiques entre les concours et les personnes qui inscrire dans les concours mais je trouve des problem comment le faire.est ce que vous pouvez m'aider? et merci d'avance:)
c'est les tables
CREATE TABLE IF NOT EXISTS concours
(
id
int(11) NOT NULL AUTO_INCREMENT,
titre
varchar(50) NOT NULL,
description
text NOT NULL,
description\_gains
text NOT NULL,
regles
text NOT NULL,
logo
text NOT NULL,
photo
text NOT NULL,
d\_debut
date NOT NULL,
d\_fin
date NOT NULL,
Actif
int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (id
)
)
CREATE TABLE IF NOT EXISTS concours\_clients
(
id
int(11) NOT NULL AUTO_INCREMENT,
nom
varchar(50) DEFAULT NULL,
prenom
varchar(50) DEFAULT NULL,
email
varchar(50) DEFAULT NULL,
d\_inscription
timestamp NULL DEFAULT CURRENT_TIMESTAMP,
client\_id
int(11) DEFAULT NULL,
concour\_id
int(11) NOT NULL,
source
varchar(200) NOT NULL,
ip
varchar(200) NOT NULL,
sexe
varchar(200) NOT NULL,
PRIMARY KEY (id
))
SVP m'aider