コード例 #1
0
ファイル: CtrlRecherche.php プロジェクト: Gregooz/OpenData
 function demarrer()
 {
     $dao = new dao();
     $tab_installations = $dao->getInstallations($this->recherche);
     $html = "";
     $vue = new vueInstallation();
     foreach ($tab_installations as $installation) {
         $html .= $vue->generer1Installation($installation);
     }
     $vue->afficher($html);
 }
コード例 #2
0
ファイル: testdoa.php プロジェクト: Gregooz/OpenData
<?php

require "dao.php";
$dao = new dao();
var_dump($dao->getInstallations("Nantes"));