Clay,

Looks like a small tweak in php.ini will do the trick for you. You can
change the error_reporting below to something like
error_reporting  = E_ALL & ~(E_NOTICE | E_USER_NOTICE);

The problem seems to be caused since the developers of the phpdb wrapper
relies on the fact that a variable will be initialised automatically by
PHP - heck, I often do that myself in simple vars, not arrays ect ofcourse.

Try it and report back if it works or if you need further assistance

Lars B. Jensen, CEO and Founder
LJWeb GmbH

www.ljweb.com


> -----Original Message-----
> From: Clay Culver [mailto:[EMAIL PROTECTED]]
> Sent: 14. november 2001 12:21
> To: PHP DB List
> Subject: [PHP-DB] phpdb error, need help
>
>
> Hi,
>
>       I have been using the phpdb wrapper on http://phpdb.linuxbox.com
> for about a year now, and have used it to great extent. But now as I
> have built a new http server for my company I seem to be getting an
> error with it and the URL for the wrapper is not resolving so tech help
> there won't work and there is no email address for the author listed.
>
>       The error is this
> [Quote]
> Warning: Undefined variable: boolDBSelected in
> D:\Inetpub\hells_horses\database\phpDB-mysql.lib on line 110
> [/Quote]
>
>       You can view this in action here
> http://207.216.247.148/hells_horses/database/codex/roster.php
> To view what it should be doing go here
> http://chh.darkness-is.com/database/codex/roster.php
> I have put the phpdb.inc and the phpdb-mysql.lib in to a zip file and it
> can be downloaded here http://chh.darkness-is.com/files/phpdb.zip below
> is the code that I use to use this in a php page.
>
> [Quote]
> <?php
>       include("phpDB.inc");
>       $db = new phpDB();
>       $db->connect("localhost", "guest", "guest", "CHH");
> ?>
>
>       The only major changes to how I have the server setup is the
> fact I am using PHP 4.0.6 and MySQL 3.23.44 the rest of the server
> information is as follows.
>
> [Quote]
> 2xPII Xeon 450 w/2MB cache
> MSI 6135 Revision 1
> 2x512 ECC Registered Corsair PC100 RAM
> 2xQuantim 18.9GB SCSI-3 7200 RPM HDD
> 1x12GB Fujitsu EIDE 7200 RPM HDD
> Windows 2000 Server w/SP2 and all the Windows Updates
> [/Quote]
>
> Clay Culver
> [EMAIL PROTECTED]
>
>
> --
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to