What warnings are you receiving? Many can be avoided by doing various
checks:
e.g.
if (!isset($some_variable))
    ...some error code
else
    ...all is well

others which may be useful:
function_exists()
file_exists()

HTH

Neil



Yoel Benitez Fonseca wrote:

> Hi!
>
>   There is in PHP some way to handle errors like in other languages,
>   I mean, something like this:
>
>   .
>   .
>   .
>   try to do
>     ...
>   if error then do ...
>   .
>   .
>   .
>
>   I'm tired of reciving warnings :-(
>
> --
> Yoel Benitez Fonseca
>
> --
> PHP General 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]
>
> ***************************************************************
>  This message was virus checked with: SAVI 3.52
>  last updated 17th December 2001
> ***************************************************************

--
--------------------------------
 Email:  [EMAIL PROTECTED]
         [EMAIL PROTECTED]
--------------------------------

Reply via email to