|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-01-31 09:55 UTC] georg@php.net
[2003-01-31 10:07 UTC] georg@php.net
[2003-01-31 10:40 UTC] rabus at users dot sourceforge dot net
[2003-01-31 10:43 UTC] rabus at users dot sourceforge dot net
[2003-01-31 11:12 UTC] georg@php.net
[2003-01-31 13:15 UTC] sniper@php.net
[2003-01-31 16:28 UTC] nicos@php.net
[2003-01-31 16:34 UTC] nicos@php.net
[2004-07-26 21:55 UTC] vrana@php.net
[2020-02-07 06:12 UTC] phpdocbot@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 08:00:01 2025 UTC |
My Config: Windows NT 5.1 ("XP") Apache 2.0.44 PHP 4.3.1-CVS (stable) MySQL 4.0.9-gamma-max-nt I tried to connect to a MySQL 4.0.9 server using SSL encryption. <?php $dbh = mysql_connect('foohost', 'foouser', 'foopass', FALSE, MYSQL_CLIENT_SSL); ?> This resulted in a warning because the constant "MYSQL_CLIENT_SSL" was not defined, unlike to what the documentation says: http://www.php.net/manual/en/function.mysql-connect.php A look into the phpinfo() output told me, that your Win32 binary distributions seem to be compiled with the MySQL client API version 3.23.49. As far as I know, MySQL supports SSL since 4.0.0 so your client API appears obsolete to me.