本文整理匯總了PHP中interPool::getPropositionHistorique方法的典型用法代碼示例。如果您正苦於以下問題:PHP interPool::getPropositionHistorique方法的具體用法?PHP interPool::getPropositionHistorique怎麽用?PHP interPool::getPropositionHistorique使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類interPool
的用法示例。
在下文中一共展示了interPool::getPropositionHistorique方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: foreach
echo "<div class=\"jqmDetailPlayer\" id=\"div_jqmDetailPlayer\">\n";
echo "<div class=\"jqmnTitle\">\n";
echo "<h1>Détail du joueur</h1>\n";
echo "</div>\n";
echo "<div class=\"jqmnContent\" id=\"contentDetailPlayer\">\n";
echo "Please wait... <img src=\"/images/ajax-loader2.gif\" alt=\"loading\" />\n";
echo "</div>\n";
echo "<img src=\"/images/close_icon.png\" alt=\"close\" class=\"jqmClose\" />\n";
echo "</div>\n";
// Affichage de la table de sélection du gérant
$pool->affiche_selection_gerant2($id_pool, $id_saison, $gerant_sel_hist_prop, $gerant);
if ($gerant_sel_hist_prop == $gerant) {
echo "<p align='center' style=\"font-size:12px;\">Sélectionner un gérant pour voir les propositions d'échange l'impliquant.</p>\n";
break;
}
$propTradesA = $pool->getPropositionHistorique($id_pool, $id_saison, $gerant_sel_hist_prop, $gerant);
$nbre_trade_row = 1;
if (count($propTradesA) > 0) {
echo "<table border=0 cellspacing=5 cellpadding=5 align=\"center\">\n";
echo "<tr>\n";
foreach ($propTradesA as $item) {
if ($nbre_trade_row > 3) {
echo "</tr>\n";
echo "<tr>\n";
$nbre_trade_row = 1;
}
$id_trade = $item["id"];
$id_gerant1 = $item["id_gerant1"];
$liste_joueurs_gerant1 = $item["liste_joueurs_gerant1"];
$gerant1_accepte = $item["gerant1_accepte"];
$id_gerant2 = $item["id_gerant2"];