public function genTechLink() { global $bdd; foreach (Technologie::Technologies() as $row) { $req = "INSERT INTO UNITE_DEPEND_DE(idUnite, idTech) VALUES ('" . $this->idUnite . "', '" . $row['idTechnologie'] . "')"; $req = $bdd->exec($req); } }
public function genUpgradeLink() { global $bdd; foreach (Technologie::Technologies() as $row) { $req = "INSERT INTO UPGRADE_DEPEND(idBatiment, idTech) VALUES ('" . $this->idBatiment . "', '" . $row['idTech'] . "')"; $req = $bdd->exec($req); } }
<?php include_once './modele/Technologie.php'; include_once './modele/joueur.php'; include_once './modele/authentification.php'; include_once './modele/ressource.php'; if (estAuthentifier()) { global $currentJoueur; $tc = $currentJoueur->getTechLink(); $titre = "Recherches Technologiques"; $tech1 = Technologie::Technologies(); $techConnues = array(); $techInconnues = array(); foreach ($tech1 as $t) { $b = false; foreach ($tc as $m) { if ($t->getIdTech() == $m[0]) { $b = true; } } $resUtilisee = $t->getRessourcesLink(); if ($b) { array_push($techConnues, $t); } else { array_push($techInconnues, array($t, $resUtilisee)); } } } else { retourEnTerresConnues(); } include_once './vue/Technologie.php';