On 8/10/05, Georgi Ivanov <joro@abacustrade.com> wrote:
> Hi,
> I have a db wrapper class.
> I use it like this :
> $db->query"(SQL HERE") or die ($db->error());
> Is there a way to display the line on which $db->error() is executed without
> doing die (__LINE__." ".$db->error() )?
http://us3.php.net/debug_backtrace
Wouldn't that work?