RE: [Phplib-users] How to validate a oohform with js ?
Brought to you by:
nhruby,
richardarcher
From: Marko K. <M.K...@os...> - 2002-10-31 14:10:48
|
Hi Benjamin > but there must be a other way to handle it. I know when i turn > warnings of the dont appear but is this a good type of programming to > ignore warnings ? > > i think there must be a other solution to handle this ;) Concerning oohforms.inc I once made a similar comment, because it produces alot of warnings with the latest PHP releases! It's old code and implemented at times when obviously weren't so many warning messages thrown out by PHP itself. The only way to avoid this is to reimplement or improove oohforms! Another way, which I currently use is to temporally set the error handling to a level where error notices are simply disabled and switch back to the original state if the oohforms access is finished. You should use error_reporting(E_ERROR), since you had warnings. See the manual! Marko |