I am trying to grab information from the v$database table in oracle like dbid and name but php does not seem to except queries like this because it contains a '$' character.
thanks
v\$database
use the slash to escape the $ symbol otherwise php assumes that the variable name is $database
bastien
Thanks