How to take a variable from another application into ScriptCase

Hello,

how I can get the variable “usuario”(red) of this link in ScriptCase

http:/scriptcase/app/General/grid_inve/grid_inve.php?usuario=marcelo

This link comes from another application that is ScriptCase, but as you can see in the link command variable to the application of ScriptCase

it would be like?

[usuario]=$usuario ?

I hope I help

Re: How to take a variable from another application into ScriptCase

Hi,
variables passed by a link are handled as a global variable in the called application.
This means you can work with it like with any other variable.

i.e. in the grid_inve.php application:

if([usuario]==“something”)
{
do whatever you want
}

jsb