Re: [PHP-DB] Getting PHP 5 w/mysqli to communicate with MySQL 5

2006-01-22 Thread PHP Superman
did you turn on display_errors and set error reporting to E_ALL in php.ini? if not you should On 1/20/06, Allen Schultz [EMAIL PROTECTED] wrote: Sorry, I was in a rush to work guys. All these were downloaded pre-compliled for Win32. Apache 2.0.55 PHP 5.1.1 w/php_mysqli.dll (improved mysql)

Re: [PHP-DB] Getting PHP 5 w/mysqli to communicate with MySQL 5

2006-01-22 Thread Allen Schultz
Just turned on display_errors. Let me check. On 1/22/06, PHP Superman [EMAIL PROTECTED] wrote: did you turn on display_errors and set error reporting to E_ALL in php.ini? if not you should On 1/20/06, Allen Schultz [EMAIL PROTECTED] wrote: Sorry, I was in a rush to work guys. All

Re: [PHP-DB] Getting PHP 5 w/mysqli to communicate with MySQL 5

2006-01-22 Thread Allen Schultz
Nope, still getting the same responses. On 1/22/06, Allen Schultz [EMAIL PROTECTED] wrote: Just turned on display_errors. Let me check. On 1/22/06, PHP Superman [EMAIL PROTECTED] wrote: did you turn on display_errors and set error reporting to E_ALL in php.ini? if not you should On

Re: [PHP-DB] Getting PHP 5 w/mysqli to communicate with MySQL 5

2006-01-22 Thread Allen Schultz
Nevermind, fellow php users, unless you want to try to think of solving this problem for us in the near future. :) I have uninstalled PHP5, and reinstall PHP as v4.4.2 using mysql and old_password in database to get PHP to talk with mysql. *Sigh.* I don't know what happened. Thanks to all that

Re: [PHP-DB] Getting PHP 5 w/mysqli to communicate with MySQL 5

2006-01-22 Thread Georg Richter
Am Fr, den 20.01.2006 schrieb Allen Schultz um 1:16: Hi, all: I having trouble getting my php to communicate with my MySQL database. I have it where I can connect, but afterwards, it sees nothing for information after being connected. Any additonal information would be helpful... a) what

Re: [PHP-DB] Getting PHP 5 w/mysqli to communicate with MySQL 5

2006-01-20 Thread Arie Nugraha
To solve compability problem with mysql library, try to save your mysql user password with OLD_PASSWORD('some pass') function, not the ordinary PASSWORD('some pass') function. With this you can connect to MySQL 4.1 5 even with php 4

Re: [PHP-DB] Getting PHP 5 w/mysqli to communicate with MySQL 5

2006-01-20 Thread Allen Schultz
Sorry, I was in a rush to work guys. All these were downloaded pre-compliled for Win32. Apache 2.0.55 PHP 5.1.1 w/php_mysqli.dll (improved mysql) MySQL 5.0.18 This script: htmlhead/headbody ?php $link = mysqli_connect('localhost','root','xx'); if (mysqli_connect_errno()) { echo error;

RE: [PHP-DB] Getting PHP 5 w/mysqli to communicate with MySQL 5

2006-01-19 Thread Bastien Koert
code versions of mysql and any error messages would help too bastien From: Allen Schultz [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] Getting PHP 5 w/mysqli to communicate with MySQL 5 Date: Thu, 19 Jan 2006 17:16:03 -0700 Hi, all: I having trouble getting my php to

Re: [PHP-DB] Getting PHP 5 w/mysqli to communicate with MySQL 5

2006-01-19 Thread Julien Bonastre
Without some good information I'm going to take a stab in the dark here.. You are using the mysqli functions right? Not the older mysql ones for mysql4.x and older?? If you only compiled php with the mysqli libraries then you need to use them You can connect in some fashions to mysql5