Re: [PHP] Problems with PHP and MySQL

2005-02-06 Thread Curt Zirzow
* Thus wrote Sarah: > Fixed. It was a combination of the commandline version of PHP 503 not > building by default, *and* my having to use the 'mysqli' interface as > you suggested. The object interface to mysql works quite nicely. Just a note: if you do use the mysqli interface, it isn't compati

Re: [PHP] Problems with PHP and MySQL

2005-02-05 Thread Sarah
Fixed. It was a combination of the commandline version of PHP 503 not building by default, *and* my having to use the 'mysqli' interface as you suggested. The object interface to mysql works quite nicely. Many thanks, Sarah -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Problems with PHP and MySQL

2005-02-05 Thread Bruce Douglas
sarah... rather than deal with classes/objs... (at least initially) just create a simple php/mysql app that sets up the user/passwd/host for the db, and see if you can do a successful mysql_connect check the return/error codes to see if the call/code works this will quickly tell you if you

Re: [PHP] Problems with PHP and MySQL

2005-02-05 Thread Bruce Douglas
.ini file also needs to be setup correctly. -bruce -Original Message- From: Jochem Maas <[EMAIL PROTECTED]> Sent: Feb 5, 2005 8:46 AM To: Sarah <[EMAIL PROTECTED]> Cc: php-general@lists.php.net Subject: Re: [PHP] Problems with PHP and MySQL Sarah wrote: > Hi, > >

Re: [PHP] Problems with PHP and MySQL

2005-02-05 Thread Jochem Maas
Sarah wrote: Hi, I'm relatively new to PHP, but have already written a few functional web-based scripts. I recently decided to implement a MySQL-based system, but hit the following problem... I have PHP version 5.03, and MySQL v 4.19. I downloaded and compiled both, and both work perfectly alon