* Thus wrote bruce: > hi... > > since pconnect is not supported in php5, i'm wondering if the issue is that > mysql no longer supports the underlying functions to implement pconnect, or > if the decision to leave it out was based upon other factors.
php5 has pconnect. You're getting mysql/mysqli confused: mysql_pconnect(); // valid mysqli_pconnect(); // NOT valid pconnect was removed from the mysqlImproved extension because it usually causes more problems than it solves. mysqli is only for mysql database versions >= 4.1.2, anything less you will still use mysql. Curt -- First, let me assure you that this is not one of those shady pyramid schemes you've been hearing about. No, sir. Our model is the trapezoid! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php