Re: [PHP] mysqli unclonable object

2005-11-25 Thread Matt Monaco
In outlook express by default the headers are displayed as some icons and then subject, from, sent, size. For some people From is displayed in double quotes, and others not. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mysqli unclonable object

2005-11-25 Thread Curt Zirzow
On Wed, Nov 23, 2005 at 11:43:56PM -0500, Matt Monaco wrote: > I get string(1) "", should that be taken just the same as 0? In addition > phpinfo() indicates php 5.0.4 - does the upgrade to .5 involve remove .4 > first? I'm not sure how you are getting 'string(1) ""' with php5.0.x you should h

Re: [PHP] mysqli unclonable object

2005-11-23 Thread Matt Monaco
I get string(1) "", should that be taken just the same as 0? In addition phpinfo() indicates php 5.0.4 - does the upgrade to .5 involve remove .4 first? btw, as I'm new to the mailing list thing, why do some names appear in quotes and others do not? Thanks, Matt "Curt Zirzow" <[EMAIL PROTE

Re: [PHP] mysqli unclonable object

2005-11-23 Thread Curt Zirzow
On Wed, Nov 23, 2005 at 06:48:50PM -0500, Matt Monaco wrote: > Thanks for your attention Curt, but unfortunatly that is not the issue. > Compatibility mode is not on. What does this say just before you do $link = new ...: var_dump(ini_get('zend.ze1_compatibility_mode')); If it says string(1) "

Re: [PHP] mysqli unclonable object

2005-11-23 Thread Matt Monaco
Thanks for your attention Curt, but unfortunatly that is not the issue. Compatibility mode is not on. For documentation's sake, I think the problem is that there are other links in the code using the same credentials. When you declare a link resource to a database, PHP first searches to see if th

Re: [PHP] mysqli unclonable object

2005-11-23 Thread Curt Zirzow
On Wed, Nov 23, 2005 at 01:13:22AM -0500, Matt Monaco wrote: > On a Fedora 4 machine running MySQL 4.1 I am having trouble declaring an > instance of a mysqli extension. > > class Data extends mysqli { > > > $link = new Data("localhost", "user", "password", "db"); > > This invokes the

[PHP] mysqli unclonable object

2005-11-22 Thread Matt Monaco
On a Fedora 4 machine running MySQL 4.1 I am having trouble declaring an instance of a mysqli extension. class Data extends mysqli { function __construct($host, $user, $password, $db = null) { @parent::__construct($host, $user, $password, $db) or printf("There was an error