On Tue, Apr 15, 2008 at 5:07 PM, John A DAVIS <John.A.Davis@xxxxxxxxxxx> wrote: [snip!] > > Notice: A non well formed numeric value encountered in > C:\Inetpub\wwwroot\mazamaslocal\functions.php on line 15 > Oct 02 (Tue) Triple Crown Ken Searl It's an E_NOTICE. That means the issue has always existed, it was just never displayed. While you should make every attempt to fix every issue, notices are generally safe to ignore without any serious consequence (keep in mind, I say, "generally"). So you can update your php.ini's error_reporting variable to the following: error_reporting = E_ALL & ~E_NOTICE .... and then restart IIS (which is what it looks like you're using, based upon path). -- </Daniel P. Brown> Ask me about: Dedicated servers starting @ $59.99/mo., VPS starting @ $19.99/mo., and shared hosting starting @ $2.50/mo. Unmanaged, managed, and fully-managed! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php