|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-08-02 08:08 UTC] cox@php.net
[2002-08-05 09:03 UTC] rotherme at andrews dot edu
[2002-08-06 09:10 UTC] ludoo@php.net
[2002-08-06 09:11 UTC] ludoo@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 15:00:02 2025 UTC |
Windows uses back slashes, so line 82 breaks it: ($dsninfo['hostspec'] . ':/' . $dsninfo['database']) : That would be something like: $dsninfo['hostspec'] . ':/c:\db\db.gdb' Which doesn't work. If line 82 is changed to ($dsninfo['hostspec'] . ':' . $dsninfo['database']) : (no slash), then it does work.