|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-22 17:25 UTC] sniper@php.net
[2001-05-22 22:58 UTC] iplount at comcity dot com
[2001-05-22 23:05 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 04:00:01 2025 UTC |
$SQLStmt = CreateSQLArray(); $numElements = Count($SQLStmt); //dies here when trying to make the link $link = mysql_connect($host, $user, $password); //other mysql functions seem to work fine at times for($x = 0; $x < $numElements; $x++){ mysql_db_query($dbname, $SQLStmt[$x], $link); if(mysql_error($link) != ""){ $SQLErrors[] = mysql_error($link); } } /* I have included the absolute path to my mysql install directory during configuration and I continue to get this error. I have compiled and recompiled mysql, apache, and php I don't know how many times. This is very frustrating as I have succesfully installed previous version of all with minor problems compared to this. */