Re: [PHP] Mysterious MYSQL Error..

2001-07-22 Thread Steve Edberg
Do you know if you've even made a valid database connection? Try echoing $this->database as well. If that is null, you haven't connected to your database; perhaps the username, password and or permissions were changed, so that you're unable to connect from your PHP program. - steve

RE: [PHP] Mysterious MYSQL Error..

2001-07-22 Thread Greg Schnippel
Never mind this one.. :) I figured out that it was because I'm using mysql_query, but declaring the database which means that the mysql_query command will fail and of course won't return a mysql_error code. Geeez... Another classic case of figuring out the problem in the process of trying to exp