Problema relazione tra due tabelle

  • Creatore Discussione Creatore Discussione banart
  • Data di inizio Data di inizio

banart

Nuovo Utente
5 Ott 2010
1
0
0
CIao a tutti, mi presento. Sono bANART e mi sono fatto contagiare da poco dal PHP e tutto ciò che serve al PHP per creare pagine dinamiche :ilpirata:

Attualmente però ho un piccolo problema... ho saputo (leggendo in internet) che è possibile relazionare due tabelle.

Io ho un form di registrazione con molti campi tra cui, campi di identificazione
(nome, cognome, username, password e email)
e campi di opzioni, per lo più checkbox.

Queste due tipologie di dati vorrei tenerle separate in due tabelle, ma ovviamente i record della tabella 2 devono coincidere con i rispettivi record della tabella 1!! (vi sto annoiando)

Il mio problema è che le due tabelle che ho creato funzionano perfettamente, ma non si relazionano!!! (posto il codice):

Codice:
CREATE TABLE users (
   id int(11) NOT NULL AUTO_INCREMENT,
   nome varchar(20) NOT NULL,
   cognome varchar(20) NOT NULL,
   username varchar(20) NOT NULL,
   email varchar(60) NOT NULL,
   password varchar(50) NOT NULL,
   key_control varchar(50) NOT NULL,
   ver int(1) NOT NULL DEFAULT '0',
   PRIMARY KEY  (id)
) ENGINE=InnoDB;

CREATE TABLE profile (
   id_profile int(11) NOT NULL AUTO_INCREMENT,
   id_users int(11) default NULL,
   opz1 varchar(100) NOT NULL,
   opz2 int(1) NOT NULL DEFAULT '0',
   opz3 int(1) NOT NULL DEFAULT '0',
   opz4 int(1) NOT NULL DEFAULT '0',
   opz5 int(1) NOT NULL DEFAULT '0',
   opz6 int(1) NOT NULL DEFAULT '0',
   opz7 int(1) NOT NULL DEFAULT '0',
   opz8 int(1) NOT NULL DEFAULT '0',
   opz9 int(1) NOT NULL DEFAULT '0',
   opz10 int(1) NOT NULL DEFAULT '0',
   opz11 int(1) NOT NULL DEFAULT '0',
   opz12 int(1) NOT NULL DEFAULT '0',
   opz13 int(1) NOT NULL DEFAULT '0',
   opz14 int(1) NOT NULL DEFAULT '0',
   opz15 int(1) NOT NULL DEFAULT '0',
   opz16 int(1) NOT NULL DEFAULT '0',
   opz17 int(1) NOT NULL DEFAULT '0',
   opz18 int(1) NOT NULL DEFAULT '0',
   opz19 int(1) NOT NULL DEFAULT '0'  
   PRIMARY KEY  (id_profile),
   FOREIGN KEY (id_users) REFERENCES users (id)
) ENGINE=InnoDB;

il campo id_users nella seconda tabella rimane sempre NULL!!!
Sapreste aiutare un neofita a capire come correggere l'errore?
Graziegrazie!!
 

Discussioni simili