Jump to content

Any football fans - help with a league table system


Mr Chris

Recommended Posts

Hi All,

 

I've written a league table system and now I want to ORDER (BY) the teams in the league but how do you order league tables? Has anyone else/done something like this and knows the order a league table goes in ie:

 

1) Number of Points

2) then Goal Difference

3) then Goals scored

 

But what comes next? and then after that (ie conditions)?

 

Thanks

 

Chris

Link to comment
Share on other sites

This is something I have done before, but i never bothered to finish the project.

 

<?php

$i = 1;
while($i <= 20)
{
		// get teams stats
		$query = mysql_query("SELECT * FROM `football_teams`  ORDER BY `points` DESC, `gd` DESC, `scored` DESC LIMIT $i,$i") or die(mysql_error());
		$row = mysql_fetch_assoc($query) or die(mysql_error());
		// get results from table
		$team = $row['name'];
		$won = $row['won'];
		$lost = $row['lost'];
		$drawn = $row['drawn'];
		$scored = $row['scored'];
		$against = $row['against'];
		$points = $row['points'];
		$gd = $row['gd'];
		$played = $row['played'];
		// trim to make sure there is no unwanted spaces
		trim($team);
		// replace ' ' with '_' and set to link
		$link = str_replace(' ','_',$team);
		// make first letter of word capital
		$team = ucwords($team);
		// echo results
		echo "<tr>";
		echo "<td width=\"5%\" align=\"center\">";
		echo "{$i}.";
		echo "</td>";
		echo "<td width=\"15%\" align=\"center\">";
		echo "<a href=\"teams.php?team={$link}\">{$team}</a>";
		echo "</td>";
		echo "<td width=\"5%\" align=\"center\">";
		echo "{$played}";
		echo "</td>";
		echo "<td width=\"5%\" align=\"center\">";
		echo "{$won}";
		echo "</td>";
		echo "<td width=\"5%\" align=\"center\">";
		echo "{$lost}";
		echo "</td>";
		echo "<td width=\"5%\" align=\"center\">";
		echo "{$drawn}";
		echo "</td>";
		echo "<td width=\"5%\" align=\"center\">";
		echo "{$scored}";
		echo "</td>";
		echo "<td width=\"5%\" align=\"center\">";
		echo "{$against}";
		echo "</td>";
		echo "<td width=\"5%\" align=\"center\">";
		if($gd > 0)
		{
			echo "+";
		}
		echo "{$gd}";
		echo "</td>";
		echo "<td width=\"5%\" align=\"center\">";
		echo "{$points}";
		echo "</td>";
		echo "<td width=\"40%\" align=\"center\">";
		echo "";
		echo "</td>";
		echo "</tr>";
		if($i ==4 or $i == 6 or $i == 17)
		{
			echo "<tr>";
			echo "<td width=\"100%\" colspan=\"11\" align=\"left\">";
			echo "<hr width=\"60%\" color=\"#ff0000\" align=\"left\">";
			echo "</td>";
			echo "</tr>";
		}
		// increment number
		$i++;
}

?>

 

There is quite a bit of junky html in there and you could use a for loop instead of while, but thats the general idea.

 

~ Chocopi

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.