當前位置: 首頁>>代碼示例>>PHP>>正文


PHP interPool::affiche_selection_gerant方法代碼示例

本文整理匯總了PHP中interPool::affiche_selection_gerant方法的典型用法代碼示例。如果您正苦於以下問題:PHP interPool::affiche_selection_gerant方法的具體用法?PHP interPool::affiche_selection_gerant怎麽用?PHP interPool::affiche_selection_gerant使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在interPool的用法示例。


在下文中一共展示了interPool::affiche_selection_gerant方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

-->
<div ID="top_page">
     <?php 
// Affichage du top de la page
$pool->affiche_top_page($id_pool, $id_saison, $sess, $str_fil_ariane, $dev);
?>
</div>

<!--
<div ID="contenu">
-->
     <?php 
// Affichage de la table de sélection de la saisoin
$pool->affiche_selection_saison($id_pool, $id_saison, 0);
// Affichage de la table de sélection du gérant
$pool->affiche_selection_gerant($id_pool, $id_saison, $gerant_sel);
?>


	     <INPUT TYPE="HIDDEN" ID="id_pool" VALUE="<?php 
echo $id_pool;
?>
" />
		<INPUT TYPE="HIDDEN" ID="saison_id" VALUE="<?php 
echo $id_saison;
?>
" />


		<TABLE cellpadding=0 cellspacing=0 border=0 style="margin-top:10px;">
			<TR>
開發者ID:jfanctil,項目名稱:lamoria,代碼行數:31,代碼來源:stats-gerant.php

示例2:

                 echo "<TD class=\"tableCellRidge1\" align=\"center\" style=\"{$style}\">{$differentiel}</TD>\n";
             }
             echo "<TD class=\"tableCellRidge1\" align=\"center\" style=\"{$style}\">{$nbre_periodes}</TD>\n";
             echo "<TD class=\"tableCellRidge2\" align=\"center\" style=\"{$style}\">{$moyenne}</TD>\n";
             echo "</TR>\n";
             $rang++;
         }
         echo "<tr><td class=\"tableCellRidge7\" colspan=50>&nbsp;</td></tr>\n";
         echo "</table>\n";
     }
     break;
 case "vs_les_autres":
     // Affichage de la table de sélection de la saison
     $pool->affiche_selection_saison($id_pool, $id_saison2show, 1);
     // Affichage de la table de sélection du gérant
     $pool->affiche_selection_gerant($id_pool, $id_saison2show, $gerant_sel_vs_autres);
     if ($id_saison2show > 0) {
         $dataSaison = $pool->getConfigPool($id_pool, $id_saison2show);
         $nhl_team_as_gerant_name_saison = $dataSaison["nhl_team_as_gerant_name"];
     } else {
         $nhl_team_as_gerant_name_saison = $nhl_team_as_gerant_name;
     }
     echo "<table cellpadding=0 cellspacing=0 border=0 align=\"center\" style=\"margin-top:25px;\">\n";
     echo "<tr>\n";
     echo "<th class=\"tableHeaderRoundCorner\" colspan=10>Fiche contre les autres gérants</th>";
     echo "</tr>\n";
     echo "<tr>\n";
     echo "<th class=\"tableHeader1\" nowrap>Gérant</th>";
     echo "<th class=\"tableHeader1\" nowrap>Victoires</th>";
     echo "<th class=\"tableHeader1\" nowrap>Défaites</th>";
     echo "<th class=\"tableHeader1\" nowrap>Nulles</th>";
開發者ID:jfanctil,項目名稱:lamoria,代碼行數:31,代碼來源:autres_stats.php


注:本文中的interPool::affiche_selection_gerant方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。