I have the following script written to display players appearances by every 50, so their first game appears first, then their 50th, etc, see the image below..
public function get_player_milestones( stdClass $player ) { $query = $this->dbo->prepare( 'SELECT returnTable.* FROM ( SELECT @rownum := @rownum + 1 AS milestone_count, seasonstats.* FROM seasonstats WHERE id = ANY ( SELECT matchid FROM seasonteamstats AS playergames, (SELECT @rownum:=0) variableInit WHERE firstname = :firstname AND lastname = :lastname ) ORDER BY date ) AS returnTable WHERE returnTable.milestone_count = 1 OR ( returnTable.milestone_count ) MOD 50 = 0; ');
What I want to do now is display the games the player scored in. I have almost got it by adding
[CODE] AND goals+penalties > 0 [/CODE]
under lastname = :lastname. Problem is, its not taking into account when a player has scored 2, or more in a game. So basically, if a players scored 51 goals, the 50 is missing if they've scored more than 2 in one game. Hopefully someone understood all that :D
yeah it seems to be Edge only. The dialog buttons work as expected in Chrome and Firefox. The phone is using Android 16 (OneUI 8.5) and Edge version 149.0.4022.53
I'm not aware of this issue, but to help the other guys.
What version of Android are you using?
Did you try a different browser? To see if Edge is the issue here.
I agree when are you going to read this (really poor BTW) article?
Here is a better article so you actually know what is going on and answers questions you had in other comments --> https://arstechnica.com/gadgets/2026/05/speed-boosting-low-latency-profile-is-one-of-the-improvements-coming-to-windows-11/
It is unclear if one will be able to disable the new profile at this point but I am not seeing any reason why one would.
I disagree; they come off very "bitchy" and "whiny".
Make a great product and combine that with a great price (free) and people will come over to your side. Or build it and they will come as they say.
Constantly trying to get attention by complaining all the time, will turn people off to your product.
It use to be a nightmare, with LibreOffice supporting a newer draft ODF standard by default, and Microsoft Office supporting the older non-draft standard. Now that they both support the same version of ODF, they should be interoperable.
Question
marklcfc
I have the following script written to display players appearances by every 50, so their first game appears first, then their 50th, etc, see the image below..
What I want to do now is display the games the player scored in. I have almost got it by adding
AND goals+penalties > 0
[/CODE]
under lastname = :lastname. Problem is, its not taking into account when a player has scored 2, or more in a game. So basically, if a players scored 51 goals, the 50 is missing if they've scored more than 2 in one game. Hopefully someone understood all that :D
Link to comment
https://www.neowin.net/forum/topic/1069362-help-with-php/Share on other sites
1 answer to this question
Recommended Posts