We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've noticed with german Umalaut characters are not being correctly encoded in the PHP version.
Examples:
Ä = A ä = a
is there any way to display them correctly? Ä = Ä ä = ä
Best Regards Simon
The text was updated successfully, but these errors were encountered:
I found the solution, you have to decode the data first:
$data = ("ÄÖÜß"); $dataDecode = utf8_decode($data);
$qr->addData($dataDecode); $qr->make(); $qr->printHTML();
Sorry, something went wrong.
No branches or pull requests
I've noticed with german Umalaut characters are not being correctly encoded in the PHP version.
Examples:
Ä = A
ä = a
is there any way to display them correctly?
Ä = Ä
ä = ä
Best Regards
Simon
The text was updated successfully, but these errors were encountered: