It Maq wrote:
> Hi,
> 
> I need help with a simple script that i made for handling errors. The problem 
> is that the script displays the same message several times while i want it 
> displayed just one time.
> He is the code:
> 
> <?php
> function error_handler($errno, $errstr, $filename, $lineno, &$context)
> {
>     if ($errno == E_STRICT) {
>         echo "you are in the function error_handler<br>";
>         echo $errno. "<br>";
>     }
> }
> set_error_handler(error_handler, E_STRICT);
> ini_set('error_reporting', 0);
> 
> $conn = mysql_connect(localhost, root, iolfsyd) or trigger_error("connection 
> au serveur failed",WARNING);
> 
> ?>
> 
> Thanks
> 
> 
> 
> 
>       
> ____________________________________________________________________________________
> Be a better friend, newshound, and 
> know-it-all with Yahoo! Mobile.  Try it now.  
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 
> 
Do the erors have anything to do with string expected assuming constant
or similar?  Maybe you have multiple errors because you don't quote your
strings?

-Shawn

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to