connect_error) { die("Connection failed: " . $conn->connect_error); } // Create tables $sql = " CREATE TABLE IF NOT EXISTS themes ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL ); CREATE TABLE IF NOT EXISTS ensembles ( id INT AUTO_INCREMENT PRIMARY KEY, commentaire_auteur TEXT, valide BOOLEAN NOT NULL DEFAULT FALSE ); CREATE TABLE IF NOT EXISTS documents ( id INT AUTO_INCREMENT PRIMARY KEY, titre VARCHAR(255) NOT NULL, type INT, upload_path TEXT NOT NULL, commentaire_auteur TEXT, ensemble_id INT, theme_id INT, FOREIGN KEY (theme_id) REFERENCES themes(id), FOREIGN KEY (ensemble_id) REFERENCES ensembles(id) ); CREATE TABLE IF NOT EXISTS exercices ( id INT AUTO_INCREMENT PRIMARY KEY, commentaire_auteur TEXT, ensemble_id INT, duree INT, FOREIGN KEY (ensemble_id) REFERENCES ensembles(id) ); CREATE TABLE IF NOT EXISTS exercices_themes ( id INT AUTO_INCREMENT PRIMARY KEY, exercice_id INT, theme_id INT, FOREIGN KEY (exercice_id) REFERENCES exercices(id), FOREIGN KEY (theme_id) REFERENCES themes(id) ); "; if ($conn->multi_query($sql) === TRUE) { echo "Tables created successfully"; } else { echo "Error creating tables: " . $conn->error; } // Close the connection $conn->close(); ?>