Extern variable is in php or not

Newbie Member
13Apr2007,18:08   #1
deepakagrawal's Avatar
hello,
i am deepak, and i want to know there is extern variable in php or not, or if yes so how can i achive that.
thanks
Go4Expert Founder
13Apr2007,19:41   #2
shabbir's Avatar
All variables are by default global and they are available from the point of declaration to any other file that is after the declaration but if you have some function or class you need to redeclare the variable in that class by the global keyword.