|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-09-09 04:45 UTC] ondrejspilka at centrum dot cz
[2003-09-09 08:38 UTC] magnus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Fri Feb 13 03:00:01 2026 UTC |
Description: ------------ Win binaries for PHP5 presented on the php.net doesn't include support for MySQL. Binaries downloaded from 2 locations(Czech Rep, Belgium), NOT compiled. Reproduce code: --------------- <?php //$h = mysql_connect("localhost","mysql_user"); /* ------ second option to reproduce ------*/ if ( function_exists('mysql_connect') ) echo("MYSQL support OK"); else echo("MYSQL support NOT PRESENT"); ?> Expected result: ---------------- connected succesfully /* OR */ MYSQL support OK Actual result: -------------- Fatal error: Call to undefined function: mysql_connect() in C:\Inetpub\wwwroot\php\info.php on line 2 /* OR */ MYSQL support NOT PRESENT