本文整理汇总了PHP中DB_STRUCTURE_ADMINISTRATEUR::DB_lister_matieres方法的典型用法代码示例。如果您正苦于以下问题:PHP DB_STRUCTURE_ADMINISTRATEUR::DB_lister_matieres方法的具体用法?PHP DB_STRUCTURE_ADMINISTRATEUR::DB_lister_matieres怎么用?PHP DB_STRUCTURE_ADMINISTRATEUR::DB_lister_matieres使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DB_STRUCTURE_ADMINISTRATEUR
的用法示例。
在下文中一共展示了DB_STRUCTURE_ADMINISTRATEUR::DB_lister_matieres方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
<div id="zone_perso">
<hr />
<h2>Matières spécifiques (établissement)</h2>
<table class="form hsort">
<thead>
<tr>
<th>Référence</th>
<th>Nom complet</th>
<th class="nu"><q class="ajouter" title="Ajouter une matière."></q></th>
</tr>
</thead>
<tbody>
<?php
// Lister les matières spécifiques
$DB_TAB = DB_STRUCTURE_ADMINISTRATEUR::DB_lister_matieres(TRUE);
if (!empty($DB_TAB)) {
foreach ($DB_TAB as $DB_ROW) {
// Afficher une ligne du tableau
echo '<tr id="id_' . $DB_ROW['matiere_id'] . '">';
echo '<td>' . html($DB_ROW['matiere_ref']) . '</td>';
echo '<td>' . html($DB_ROW['matiere_nom']) . '</td>';
echo '<td class="nu">';
echo '<q class="modifier" title="Modifier cette matière."></q>';
echo '<q class="supprimer" title="Supprimer cette matière."></q>';
echo '</td>';
echo '</tr>' . NL;
}
} else {
echo '<tr class="vide"><td class="nu" colspan="2"></td><td class="nu"></td></tr>' . NL;
}
示例2: foreach
<div id="zone_perso">
<hr />
<h2>Matières spécifiques (établissement)</h2>
<table class="form hsort">
<thead>
<tr>
<th>Référence</th>
<th>Nom complet</th>
<th class="nu"><q class="ajouter" title="Ajouter une matière."></q></th>
</tr>
</thead>
<tbody>
<?php
// Lister les matières spécifiques
$DB_TAB = DB_STRUCTURE_ADMINISTRATEUR::DB_lister_matieres(TRUE /*is_specifique*/);
if(!empty($DB_TAB))
{
foreach($DB_TAB as $DB_ROW)
{
// Afficher une ligne du tableau
echo'<tr id="id_'.$DB_ROW['matiere_id'].'">';
echo '<td>'.html($DB_ROW['matiere_ref']).'</td>';
echo '<td>'.html($DB_ROW['matiere_nom']).'</td>';
echo '<td class="nu">';
echo '<q class="modifier" title="Modifier cette matière."></q>';
echo '<q class="supprimer" title="Supprimer cette matière."></q>';
echo '</td>';
echo'</tr>'.NL;
}
}