当前位置: 首页>>代码示例>>PHP>>正文


PHP interPool::getNHLConferences方法代码示例

本文整理汇总了PHP中interPool::getNHLConferences方法的典型用法代码示例。如果您正苦于以下问题:PHP interPool::getNHLConferences方法的具体用法?PHP interPool::getNHLConferences怎么用?PHP interPool::getNHLConferences使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在interPool的用法示例。


在下文中一共展示了interPool::getNHLConferences方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: foreach

     echo "<tr><td class=\"tableCellRidge7\" colspan=50>&nbsp;</td></tr>\n";
     echo "</table>\n";
     echo "</td>\n";
 }
 echo "</tr>\n";
 echo "</table>\n";
 echo "<hr width=80%></hr>\n";
 echo "<a name=\"conference\"></a>";
 echo "<table align=\"center\" cellspacing=2 cellpadding=2>\n";
 echo "<tr>\n";
 echo "<td><a href=\"#general\">Classement général</a></td>\n";
 echo "<td><a href=\"#conference\">Classement par conférence</a></td>\n";
 echo "<td><a href=\"#division\">Classement par division</a></td>\n";
 echo "</tr>\n";
 echo "</table>\n";
 $conference_dataA = $pool->getNHLConferences();
 echo "<table align=\"center\" cellspacing=5 cellpadding=5>\n";
 echo "<tr>\n";
 foreach ($revuesA as $revueA) {
     echo "<td>\n";
     echo "<table cellpadding=0 cellspacing=0 border=0>\n";
     echo "<tr>\n";
     echo "<th CLASS=\"tableHeaderRoundCorner\" colspan=10>Selon la revue '{$revueA['nom']}'</th>";
     echo "</tr>\n";
     echo "<tr>\n";
     foreach ($conference_dataA as $confA) {
         echo "<th CLASS=\"tableHeader1\" colspan=3 nowrap>\n                                         <IMG SRC=\"{$confA['image']}\" style=\"margin-left:5px;\" width=21 height=21/>\n                                         <FONT style=\"vertical-align:50%;margin-left:3px;margin-right:3px;font-weight:bold;\">{$confA['name']}</font>\n                                         </th>";
         echo "<th CLASS=\"tableHeader2\" style=\"padding:0 0 0 0;\">&nbsp;</th>\n";
     }
     echo "</tr>\n";
     echo "<tr>\n";
开发者ID:jfanctil,项目名称:lamoria,代码行数:31,代码来源:draft_stats.php

示例2: PhpMyBorder

        echo $_SERVER['PHP_SELF'];
        ?>
">
     <INPUT TYPE="HIDDEN" NAME="id_team_selected"/>

     <CENTER>
     <?php 
        $pmb = new PhpMyBorder(true);
        echo $pmb->begin_round("950", "", "000000");
        //  (width, fillcolor, edgecolor)
        ?>

     <TABLE ALIGN="CENTER" cellpadding=10 cellspacing=10>
          <TR>
     <?php 
        $nhl_conferences = $pool->getNHLConferences();
        foreach ($nhl_conferences as $data_conference) {
            echo "<TD>\n";
            // initialisation de certaines array (et remise à 0).
            $id_teamA = array();
            $cityA = array();
            $team_nameA = array();
            $team_abbrA = array();
            $team_logoA = array();
            $id_conference = $data_conference["id"];
            $conference_name = $data_conference["name"];
            $conference_logo = $data_conference["image"];
            echo "<TABLE CLASS=\"joueurs_nhl\" ALIGN=\"CENTER\" border=1>\n";
            echo "<TR>\n";
            echo "<TH COLSPAN=10 ><IMG SRC=\"{$conference_logo}\" style=\"margin-right:5px;margin-left:5px;\"/>" . "<FONT style=\"vertical-align:100%;margin-right:10px;margin-left:10px;\">{$conference_name}</FONT>" . "<IMG SRC=\"{$conference_logo}\" tyle=\"margin-left:5px;\"/></TH>\n";
            echo "</TR>\n";
开发者ID:jfanctil,项目名称:lamoria,代码行数:31,代码来源:admin.php


注:本文中的interPool::getNHLConferences方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。