Hi is there a way store the variables globally.
I mean to say If i declare a variable I want access it in all functions.
Presently to access the values in different functions Iam writting below code.Plz suggest is this Correct method
function one()
{
m.variable=1
}
function two()
{
print m.variable 'output is 1
}
is this way correct.Plz suggest me.....