Example #1
0
echo $expireDaysFormatted;
?>
</td>
				<td title="<?php 
echo $additionalInfo;
?>
"><?php 
echo $reason;
?>
</td>
			</tr>
		<?
		} // end while
		?>
		<?php 
echo getRankBoxBottom();
?>
		<?
	} // rows > 0 
  else {
    echo "No results";
  }
?>

<?php 
echo $msg;
?>
</td></tr></table>
<?php 
echo getOuterBoxBottom();
?>
Example #2
0
	   <td width="35%" <?= $nameClass ?>><?php echo "<img class='imgMargin' src='$directory/flags/$nationality.bmp' title='$nationality' align='absmiddle' border='1'>" ?><? echo "<a href='$directory/profile.php?name=$name'>$name</a>" ?></td>
	   <td width="20%" class="darkgrey-small"><?= $profileName ?></td>
	   <td width="10%" style="text-align:right;"><?= $points ?></td>
	   <td width="7%" style="text-align:right;"><?php echo "$wins" ?></td>
	   <td width="7%" style="text-align:right;"><?php echo "$draws" ?></td>
	   <td width="7%" style="text-align:right;"><?php echo "$losses" ?></td>
     <td width="7%" style="text-align:right;"><?php echo "$dc" ?></td>
	   <td width="9%" style="text-align:right;"><?php printf("%.2f", $percentage*100); ?></td>
	</tr>
<?
		}
    
		$cur++;
	}
?>
<?= getRankBoxBottom() ?>
</td></tr></table>
<?	
} // end position == 0
?>
</td>
</tr></table>
<?= getOuterBoxBottom() ?>
<?php

require ('../bottom.php');

function getOption($season, $ladder, $seasonLadder) {
	if (strcmp($season.":".$ladder, $seasonLadder) == 0) {
		$selected = 'selected="selected"';
	}
Example #3
0
  if (!is_null($row['profileImage'])) {
    $leagueImage = '<img border="0" src="/gfx/awards/'.$row['profileImage'].'" />';
  }
  $winner = '';
  if (!is_null($row['name'])) {
    $winner = '<a href="/profile.php?name='.$row['name'].'">'.$row['name'].'</a>';
  }
  
  echo '<tr class="row" height="33">';
  echo '<td width="30" align="right">'.$row['leagueId'].'</td>';
  echo '<td width="25" align="center">'.$leagueImage.'</td>';
  echo '<td>'.$leagueLink.'</td>';
  echo '<td>'.$winner.'</td>';
  echo '<td width="50">'.$year.'</td>';
  echo '<td width="100">'.$status.'</td>';
  echo '</tr>';
}

?>
<?php 
echo getRankBoxBottom("Games", $columnsArray);
?>
</td></tr></table>
<?php 
echo getOuterBoxBottom();
?>
<?
require('../bottom.php');
?>