|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-08-04 16:58 UTC] gschlossnagle@php.net
[2004-08-04 16:59 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 10 03:00:01 2025 UTC |
Description: ------------ I have used PHP 4 and the MySQL fucntions were built in. I upgraded to version 5 and all my scripts quit working.... come to find out I had to re-enable the extension for it. On top of that, I had to copy a dll file into my system32 directory. Please.... if you are going to include something in one version, leave it as is in the next version. I had signifigant downtime while trying to figure out what the heck was going on. (At least could you add something in the installer to detect the presense of MySQL and move the extensions and files into the proper places) Reproduce code: --------------- $DBConn = mysql_connect($DBHost,$DBUser,$DBPass) or die("Unable to connect to database"); Expected result: ---------------- successful connection Actual result: -------------- Fatal error: Call to undefined function mysql_connect()