German special characters
-
Hi,
i am writing an extension for your Leaguemanager, to update the Scores from an external Website. Everthing is working fine, just the german special character make some problems.Example:
$lma = new LeagueManagerAdminPanel(); $lma->setLeagueID( 4 ); $lma->league = $lma->getLeague( $lma->getLeagueID() ); $lma->setSeason( 2014 ); echo '<br> TeamID of Eckernf?rder MTV Pirates I: ' . $lma->getTeamID( 'Eckernf?rder MTV Pirates I' ); echo '<br> TeamID of Hamburg Sharks I: ' . $lma->getTeamID( 'Hamburg Sharks I' );
The result is the following:
TeamID of Eckernf?rder MTV Pirates I:
TeamID of Hamburg Sharks I: 51So the german umlaut isnt working.
Your method $leaguemanageradmin->addTeam adds the team correct with the ?. In the database it is stored as Eckernf?rder MTV Pirates I. But the getTeamID doesnt return any id.Any ideas or suggestions, maybe I cant see my mistake, thanks, Timo.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘German special characters’ is closed to new replies.