/    Sign up×
Community /Pin to ProfileBookmark

MySQL Results Make Own Array

I’m looping through a MySQL result. The result is a series of football games played by a particular person.

On each game, I want to do a lookup to see what ‘season’ it was in. 

I want to group results by team and season.

For example, if a reason was in 2002-2023 I want all games played for team 76 collated together. Showing how many games they played and how many goals they scored. 

I can’t do this in MySQL as some games are played for under multiple competitions and are counted twice. So I’m looking to loop through my game list by playerId and create a row for each team and season.  

Assuming making that an array and adding to it?

Question is how?

while ($row = $result->fetch_assoc()) {
   $teamId = $row['teamId'];
   $season = getSeason($row['gameId']);

// if season and teamId array row exists add goals and game to appearance else create new one?
}

to post a comment
PHP

1 Comments(s)

Copy linkTweet thisAlerts:
@JamieC1Apr 14.2024 — Create a PHP array to group football games by team and season. Loop through the MySQL results, check if the team-season combination exists in the array, and update the game and goal counts accordingly.
×

Success!

Help @kiwis spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 4.30,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...