RE: [PHP] broken code....

2005-12-11 Thread Mark Steudel
What did you do to fix it? -Original Message- From: Eternity Records Webmaster [mailto:[EMAIL PROTECTED] Sent: Saturday, December 10, 2005 7:10 PM To: php-general@lists.php.net Subject: RE: [PHP] broken code Got it fixed now... tnx... -Original Message- From: Ben Blay

RE: [PHP] broken code....

2005-12-10 Thread Eternity Records Webmaster
Got it fixed now... tnx... -Original Message- From: Ben Blay [mailto:[EMAIL PROTECTED] Sent: Friday, December 09, 2005 9:46 AM To: Mark Steudel Cc: php-general@lists.php.net Subject: Re: [PHP] broken code I believe the difference between using =& and = is that the former pa

Re: [PHP] broken code....

2005-12-09 Thread Jochem Maas
mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 10:27 AM To: php-general@lists.php.net Subject: Re: [PHP] broken code $results->query('select * from eternityrecords.journal'); Should this not be: $results = $db->query('select * from eternityrecords

Re: [PHP] broken code....

2005-12-09 Thread Ben Blay
essage- > From: Ben Blay [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 08, 2005 10:27 AM > To: php-general@lists.php.net > Subject: Re: [PHP] broken code > > > $results->query('select * from eternityrecords.journal'); > > Should this not

RE: [PHP] broken code....

2005-12-08 Thread Mark Steudel
ral@lists.php.net Subject: Re: [PHP] broken code > $results->query('select * from eternityrecords.journal'); Should this not be: $results = $db->query('select * from eternityrecords.journal'); See: http://pear.php.net/manual/en/package.database.db.db-result

Re: [PHP] broken code....

2005-12-08 Thread Ben Blay
> $results->query('select * from eternityrecords.journal'); Should this not be: $results = $db->query('select * from eternityrecords.journal'); See: http://pear.php.net/manual/en/package.database.db.db-result.fetchinto.php Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

RE: [PHP] broken code....

2005-12-08 Thread Mark Steudel
What happens when you print out journal?: print_r( $journal ); Are your keys the exact case as your table fields? ID vs id or Date vs date -Original Message- From: Eternity Records Webmaster [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 11:31 PM To: php-general@lists.

Re: [PHP] broken code....

2005-12-08 Thread Jochem Maas
Eternity Records Webmaster wrote: I have this code that doesnt print the db results like they should... it 'like it should' means what exactly? uses pear::db package for the database. Was wondering if anybody can figure out how come it doesnt work... what does not work? getMessage()); }