当前位置: 首页>>代码示例>>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;未经允许,请勿转载。