Re: [PHP] Accessing $php_errmsg give an error ...

2003-01-29 Thread Ernest E Vogelsinger
At 11:28 29.01.2003, Jean-Christian Imbeault said: [snip] >I am trying to access the last error message using the superglobal >$php_errmsg. But trying to acess that var gives a "not defined" error ... > >Running this script gives me: > >ini_set("track_errors

[PHP] Accessing $php_errmsg give an error ...

2003-01-29 Thread Jean-Christian Imbeault
I am trying to access the last error message using the superglobal $php_errmsg. But trying to acess that var gives a "not defined" error ... Running this script gives me: ini_set("track_errors", true); error_reporting (E_ALL); $a = $php_errmsg; die; ?> Notice: Undefined variable: php_errmsg i