Global variables disappearing

I declared a global variable (@@global_variable) in one of my views. In
that same view, I used a form_remote_tag that calls a controller action.

However, in that controller action I try to call the global variable,
but it doesnt work.

Does anyone know what could be wrong?

On 12/11/06, Eric G. [email protected] wrote:

I declared a global variable (@@global_variable) in one of my views. In
that same view, I used a form_remote_tag that calls a controller action.

That’s not a global variable, that’s a class variable. Global
variables begin with a dollar sign.

oh man, i feel dumb…

thanks for the help…