Classify the match by day in french
-
Hello,
Sorry to my english, because I’m French.
Just this post to expose a solution to classify the matchs in the list from the Editor in French’s date, because the list is very long to research the good sporting event :
Identify the code$title = isset($match->title) ? $match->title : $teams[$match->home_team] . "–" . $teams[$match->away_team];
and modify to
$datematch = date("d/m/Y", strtotime($match->date)); $title = isset($match->title) ? $match->title : $datematch.' : '.$teams[$match->home_team] . "–" . $teams[$match->away_team];
Have you a solution to “group” by match day ($match_day) ?
thanks
jér?me
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Classify the match by day in french’ is closed to new replies.