本文整理汇总了PHP中Dao::getDetails方法的典型用法代码示例。如果您正苦于以下问题:PHP Dao::getDetails方法的具体用法?PHP Dao::getDetails怎么用?PHP Dao::getDetails使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Dao
的用法示例。
在下文中一共展示了Dao::getDetails方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: afficherAutres
public function afficherAutres()
{
$util = new UtilitairePageHtml();
$dao = new Dao();
$tabDetails = $dao->getDetails();
echo $util->genereBandeauApresConnexion();
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="vue/css/general.css">
<title></title>
<meta charset="UTF-8">
</head>
<body>
<div id="main">
<br/><br/>
<table id="tabStatistiques">
<tr>
<td>Nombre total de participants</td>
<td><?php
echo $tabDetails['nbEnt'] + $tabDetails['nbEtu'];
?>
</td>
</tr>
<tr>
<td>Nombre d'étudiants</td>
<td><?php
echo $tabDetails['nbEtu'];
?>
</td>
</tr>
<tr>
<td>Nombre d'entreprises</td>
<td><?php
echo $tabDetails['nbEnt'];
?>
</td>
</tr>
<tr>
<td>Nombre de repas à prévoir</td>
<td><?php
echo $tabDetails['nbRepas'];
?>
</td>
</tr>
<?php
$listeEntreprises = $dao->getAllEntreprises();
if (sizeof($listeEntreprises) > 0) {
echo '<tr>
<td colspan="2">
<a href="mailto:';
foreach ($listeEntreprises as $ent) {
echo $ent->getMailEnt() . ',';
}
echo '">Mail groupé aux entreprises</a>
</td>
</tr>
';
}
$listeEtudiant = $dao->getAllEtudiants();
if (sizeof($listeEtudiant) > 0) {
echo '<tr>
<td colspan="2">
<a href="mailto:';
foreach ($listeEtudiant as $etu) {
echo $etu->getMailEtu() . ',';
}
echo '">Mail groupé aux étudiants</a>
</td>
</tr>
';
}
?>
</table>
<br/><br/>
<!-- IMPORTANT : demande de génération des emplois du temps -->
<?php
$date = getdate();
// if ($date['mday'] > 30 && $date['mon'] >2) {
?>
<form method="POST" action="index.php" onsubmit="return ConfirmerGeneration();">
<input type="submit" value="Générer les emplois du temps" name="startGeneration"/>
</form>
<script>
function ConfirmerGeneration() {
return confirm('Êtes-vous sûr(e) de vouloir générer les emplois du temps avec les données actuelles ?');
}
</script>
<?php
// }
// else {
// echo 'La génération des emplois du temps sera disponible à partir du 31 mars inclus.';
// }
?>
</div>
<?php
//.........这里部分代码省略.........
示例2: header
<?php
include "header.php";
?>
<?php
session_start();
if (isset($_SESSION["access_granted"]) && !$_SESSION["access_granted"] || !isset($_SESSION["access_granted"])) {
$_SESSION["status"] = "You need to log in first";
header("Location:login.php");
}
require_once "Dao.php";
$dao = new Dao();
$parcel = $_GET["Parcel"];
$estate = $dao->getDetails($parcel);
$estates = $dao->getEstate2($parcel);
$dao->saveUserSearch($_SESSION["email"], $estates["Address"]);
$googleLoc = $estates["Address"] . ", " . $estates["City_state"] . ", ID";
echo "<table>";
echo "<tr> ";
echo "<td> " . "Property Address" . ": " . $estates["Address"] . " </td>";
echo "<tr> ";
echo "<td> " . "Property Parcel Number" . ": " . $estates["Parcel"] . " </td>";
echo "</tr>";
echo "<tr>";
echo "<td> " . "Property Owner" . ": " . $estates["Primowner"] . " </td>";
echo "</tr>";
echo "<tr> ";
echo "<td> " . "Property Second Owner" . ": " . $estates["Secowner"] . " </td>";
echo "</tr>";
echo "<tr> ";