|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-01-19 08:41 UTC] norbert dot bruder at friedrich-streb dot de
After using $id=odbc_connect(...) all calculation (float/double) results are in German format: ex. print(123/10); will display 12,3 no further operation is possible. odbc-driver: pervasive 2000 database PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Fri Mar 13 10:00:02 2026 UTC |
I think it is a odbc-problem: <?php $id = odbc_connect("AccessDSN","",""); print(123/10); print("<br>"); $id = odbc_connect("PervasiveDSN","",""); print(123/10); ?> This displays: 12.3 12,3